From cabd12b4779f4db58643cc77218e84b989a451f2 Mon Sep 17 00:00:00 2001 From: bsiegert Date: Fri, 18 Oct 2013 11:41:17 +0000 Subject: Fix a common mistake in many different packages: POSIX says that when using pax -rw, the destination directory must exist. pax in NetBSD creates it if not, pax in MirBSD complains. I read through all pkgsrc Makefiles that use pax and added an entry to INSTALLATION_DIRS, or an INSTALL_DATA_DIR invocation. I did not test all the changes but they should be fairly safe. If you notice any breakage because of this change, please contact me. --- devel/RTFM/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devel/RTFM') diff --git a/devel/RTFM/Makefile b/devel/RTFM/Makefile index 1aedfe8f2ae..837aed7f260 100644 --- a/devel/RTFM/Makefile +++ b/devel/RTFM/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2012/10/31 11:16:31 asau Exp $ +# $NetBSD: Makefile,v 1.12 2013/10/18 11:41:17 bsiegert Exp $ # DISTNAME= RTFM-2.4.5 @@ -25,7 +25,7 @@ INSTALLATION_DIRS= lib share do-install: @${ECHO} "=> Libraries" - ${INSTALL_DATA_DIR} ${DESTDIR}${RT_LIB_DIR} + ${INSTALL_DATA_DIR} ${DESTDIR}${RT_LIB_DIR}/RT cd ${WRKSRC}/lib/RT && ${FIND} . -type f ! -name '*.orig' 2>/dev/null | \ pax -rw ${DESTDIR}${RT_LIB_DIR}/RT @${ECHO} "=> HTML Documents" -- cgit v1.2.3