Regression in rc12-pre1
Phillip Susi <[email protected]>
| Newsgroups | gmane.linux.ataraid |
|---|---|
| Message-ID | <[email protected]> |
The makefile was changed and now ignores the destdir variable for the
install path for man pages. Please apply this fix:
--- 1.0.0.rc12-pre1.orig/make.tmpl.in
+++ 1.0.0.rc12-pre1/make.tmpl.in
@@ -29,13 +29,13 @@
sbindir = @sbindir@
includedir = @includedir@
infodir = @infodir@
- mandir = @mandir@
+ mandir = $(DESTDIR)@mandir@
else
libdir = $(DESTDIR)@KLIBC_LIB_DIR@
sbindir = $(DESTDIR)@KLIBC_SBIN_DIR@
includedir = $(DESTDIR)@KLIBC_INCLUDE_DIR@
infodir = @infodir@
- mandir = @mandir@
+ mandir = $(DESTDIR)@mandir@
endif