diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2005-10-29 19:26:52 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2005-10-29 19:26:52 +0000 |
commit | 1cf3b6123a79e95c57f01ade87b08b95a5870f93 (patch) | |
tree | 067daa3ef62c0e419270ef1024e3746b95540d93 /audio/py-sdl_mixer/files/patch-setup.py | |
parent | Upstream fix for very insecure temp file creation in example script (diff) |
Respect LOCALBASE/X11BASE
PR: 88149
Notified by: kris
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer)
Notes
Notes:
svn path=/head/; revision=146690
Diffstat (limited to 'audio/py-sdl_mixer/files/patch-setup.py')
-rw-r--r-- | audio/py-sdl_mixer/files/patch-setup.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/py-sdl_mixer/files/patch-setup.py b/audio/py-sdl_mixer/files/patch-setup.py new file mode 100644 index 000000000000..2825bbe40d53 --- /dev/null +++ b/audio/py-sdl_mixer/files/patch-setup.py @@ -0,0 +1,19 @@ +--- setup.py.orig Fri Oct 28 00:13:10 2005 ++++ setup.py Fri Oct 28 00:14:18 2005 +@@ -17,12 +17,14 @@ + + INCDIR = [ + "/usr/include", +- "/usr/local/include", ++ "%%LOCALBASE%%/include", ++ "%%X11BASE%%/include", + "/sw/include", # For Mac OS X + ] + LIBDIR = [ + "/usr/lib", +- "/usr/local/lib", ++ "%%LOCALBASE%%/lib", ++ "%%X11BASE%%/lib", + "/sw/lib/", # For Mac OS X + ] + |