diff options
author | grant <grant@pkgsrc.org> | 2003-05-05 17:41:32 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-05-05 17:41:32 +0000 |
commit | b903914ecd5d28deb4f265c27ec4d9cc477443fc (patch) | |
tree | d182ba4af081d82d3aaed368951c579903cc484b /emulators | |
parent | 799ef4b156828900663f60083817a7fab51b6248 (diff) | |
download | pkgsrc-b903914ecd5d28deb4f265c27ec4d9cc477443fc.tar.gz |
do-install:
- be noisier.
- create directories first, then install files into them.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/freebsd_lib/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/emulators/freebsd_lib/Makefile b/emulators/freebsd_lib/Makefile index f96a35a1afa..cd130f4e37e 100644 --- a/emulators/freebsd_lib/Makefile +++ b/emulators/freebsd_lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2003/03/29 12:40:49 jmmv Exp $ +# $NetBSD: Makefile,v 1.14 2003/05/05 17:41:32 grant Exp $ # DISTNAME= freebsd_lib-2.2.7 @@ -15,15 +15,15 @@ ONLY_FOR_PLATFORM= NetBSD-*-i386 NO_BUILD= yes do-install: - @${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd - @(cd ${WRKSRC} && ${FIND} usr -type d -print) | \ + ${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd + ${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd/var/run + (cd ${WRKSRC} && ${FIND} usr -type d -print) | \ (cd ${PREFIX}/emul/freebsd && ${XARGS} ${INSTALL_DATA_DIR}) - @cd ${WRKSRC} && for file in `${FIND} usr -name '*.*' -print`; do \ + cd ${WRKSRC} && for file in `${FIND} usr -name '*.*' -print`; do \ ${INSTALL_DATA} $$file ${PREFIX}/emul/freebsd/$$file; \ done @${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${INSTALL_FILE} - POST-INSTALL - @${INSTALL_DATA_DIR} ${PREFIX}/emul/freebsd/var/run - @${TOUCH} ${PREFIX}/emul/freebsd/var/run/ld.so.hints + ${TOUCH} ${PREFIX}/emul/freebsd/var/run/ld.so.hints show-shlib-type: @${ECHO} a.out |