pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[PATCH] missing ${DESTDIR} in sysutils/mc/Makefile



Because of the missing var, the package cannot be installed with
USE_DESTDIR=full ... attached patch fixes this.
Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/sysutils/mc/Makefile,v
retrieving revision 1.72
diff -u -r1.72 Makefile
--- Makefile    14 Feb 2008 12:26:56 -0000      1.72
+++ Makefile    25 Feb 2008 07:10:06 -0000
@@ -48,9 +48,9 @@
 # remove dir if no extensions were installed there
        rmdir ${DESTDIR}${PREFIX:Q}/lib/mc 2>/dev/null || ${TRUE}
 .if !empty(PKG_OPTIONS:Mvfs)
-       ${INSTALL_DATA_DIR} ${EGDIR}
-       ${INSTALL_DATA} ${WRKSRC}/vfs/extfs/extfs.ini ${EGDIR}
-       ${INSTALL_DATA} ${WRKSRC}/vfs/extfs/sfs.ini ${EGDIR}
+       ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
+       ${INSTALL_DATA} ${WRKSRC}/vfs/extfs/extfs.ini ${DESTDIR}${EGDIR}
+       ${INSTALL_DATA} ${WRKSRC}/vfs/extfs/sfs.ini ${DESTDIR}${EGDIR}
 .endif
 
 .include "../../devel/gettext-lib/buildlink3.mk"



Home | Main Index | Thread Index | Old Index