diff options
author | 2004-09-16 16:34:52 +0000 | |
---|---|---|
committer | 2004-09-16 16:34:52 +0000 | |
commit | 839fe88bcc2ad4b26da1f6b4f63b7965446978c0 (patch) | |
tree | d958513dbd3325f9a691a4702426fed6ee829de5 /media-libs/libvisual/files | |
parent | Marking mod_dav-1.0.3-r2 stable on x86 per security bug #63948 (Manifest reco... (diff) | |
download | gentoo-2-839fe88bcc2ad4b26da1f6b4f63b7965446978c0.tar.gz gentoo-2-839fe88bcc2ad4b26da1f6b4f63b7965446978c0.tar.bz2 gentoo-2-839fe88bcc2ad4b26da1f6b4f63b7965446978c0.zip |
Fix DESTDIR problems (sandbox violation). Closes bug #64204.
Diffstat (limited to 'media-libs/libvisual/files')
-rw-r--r-- | media-libs/libvisual/files/libvisual-0.1.6-destdir.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-libs/libvisual/files/libvisual-0.1.6-destdir.patch b/media-libs/libvisual/files/libvisual-0.1.6-destdir.patch new file mode 100644 index 000000000000..0ec6b44ca696 --- /dev/null +++ b/media-libs/libvisual/files/libvisual-0.1.6-destdir.patch @@ -0,0 +1,28 @@ +diff -Naur libvisual-0.1.6.orig/Makefile.am libvisual-0.1.6/Makefile.am +--- libvisual-0.1.6.orig/Makefile.am 2004-08-25 15:01:00.000000000 -0700 ++++ libvisual-0.1.6/Makefile.am 2004-09-16 09:22:31.617768717 -0700 +@@ -6,8 +6,8 @@ + pkgconfig_DATA = libvisual.pc + + install-exec-local: libvisual/lvconfig.h +- $(mkinstalldirs) $(prefix)/include/libvisual +- file=$(prefix)/include/libvisual/lvconfig.h; \ ++ $(mkinstalldirs) $(DESTDIR)$(includedir)/libvisual ++ file=$(DESTDIR)$(includedir)/libvisual/lvconfig.h; \ + if test -r $$file && cmp -s libvisual/lvconfig.h $$file; then :; \ + else $(INSTALL_DATA) libvisual/lvconfig.h $$file; fi + +diff -Naur libvisual-0.1.6.orig/Makefile.in libvisual-0.1.6/Makefile.in +--- libvisual-0.1.6.orig/Makefile.in 2004-09-08 13:50:59.000000000 -0700 ++++ libvisual-0.1.6/Makefile.in 2004-09-16 09:23:10.939264580 -0700 +@@ -641,8 +641,8 @@ + + + install-exec-local: libvisual/lvconfig.h +- $(mkinstalldirs) $(prefix)/include/libvisual +- file=$(prefix)/include/libvisual/lvconfig.h; \ ++ $(mkinstalldirs) $(DESTDIR)$(includedir)/libvisual ++ file=$(DESTDIR)$(includedir)/libvisual/lvconfig.h; \ + if test -r $$file && cmp -s libvisual/lvconfig.h $$file; then :; \ + else $(INSTALL_DATA) libvisual/lvconfig.h $$file; fi + |