diff options
author | 2006-09-04 15:22:40 +0000 | |
---|---|---|
committer | 2006-09-04 15:22:40 +0000 | |
commit | f4cb4aa8181cf78e11c6c8f72c8f4cf9ef5c10a9 (patch) | |
tree | f1ae525eea60c1c84157fe82f7fa44af5e203a86 /sys-fs/dmraid/files | |
parent | hald init script dependencies updated, #125938 (diff) | |
download | gentoo-2-f4cb4aa8181cf78e11c6c8f72c8f4cf9ef5c10a9.tar.gz gentoo-2-f4cb4aa8181cf78e11c6c8f72c8f4cf9ef5c10a9.tar.bz2 gentoo-2-f4cb4aa8181cf78e11c6c8f72c8f4cf9ef5c10a9.zip |
Updated destdir patch to fix bug 145973, thanks to Ian Stakenvicius <ian@syndicated-productions.com> and Michael Weyershäuser <thedude0001@gmx.de>
(Portage version: 2.1.1_rc1-r2)
Diffstat (limited to 'sys-fs/dmraid/files')
-rw-r--r-- | sys-fs/dmraid/files/dmraid-destdir-fix.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sys-fs/dmraid/files/dmraid-destdir-fix.patch b/sys-fs/dmraid/files/dmraid-destdir-fix.patch new file mode 100644 index 000000000000..07c6b442f9a6 --- /dev/null +++ b/sys-fs/dmraid/files/dmraid-destdir-fix.patch @@ -0,0 +1,34 @@ +--- make.tmpl.in.old 2006-09-03 14:38:36.000000000 -0400 ++++ make.tmpl.in 2006-09-03 14:37:43.000000000 -0400 +@@ -21,21 +21,21 @@ + SOFLAG += @SOFLAG@ + + # Setup directory variables +-prefix = $(DESTDIR)@prefix@ +-exec_prefix = $(DESTDIR)@exec_prefix@ +-bindir = @bindir@ ++prefix = @prefix@ ++exec_prefix = @exec_prefix@ ++bindir = $(DESTDIR)@bindir@ + ifeq ("@KLIBC@", "no") +- libdir = @libdir@ +- sbindir = @sbindir@ +- includedir = @includedir@ +- infodir = @infodir@ +- mandir = @mandir@ ++ libdir = $(DESTDIR)@libdir@ ++ sbindir = $(DESTDIR)@sbindir@ ++ includedir = $(DESTDIR)@includedir@ ++ infodir = $(DESTDIR)@infodir@ ++ mandir = $(DESTDIR)@mandir@ + else + libdir = $(DESTDIR)@KLIBC_LIB_DIR@ + sbindir = $(DESTDIR)@KLIBC_SBIN_DIR@ + includedir = $(DESTDIR)@KLIBC_INCLUDE_DIR@ +- infodir = @infodir@ +- mandir = @mandir@ ++ infodir = $(DESTDIR)@infodir@ ++ mandir = $(DESTDIR)@mandir@ + endif + + |