diff options
author | grant <grant@pkgsrc.org> | 2003-05-05 17:48:33 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-05-05 17:48:33 +0000 |
commit | 0b96b1fc592b43370170bfad36c0213dd8a68a2a (patch) | |
tree | 04affcbe96f81a60eabb53d2ca6383c5ee20bb7f /emulators/netbsd32_compat16 | |
parent | 90dcbc50c32fd479671c0a69361b8daf8be75549 (diff) | |
download | pkgsrc-0b96b1fc592b43370170bfad36c0213dd8a68a2a.tar.gz |
do-install:
don't call install with multiple directory args.
Diffstat (limited to 'emulators/netbsd32_compat16')
-rw-r--r-- | emulators/netbsd32_compat16/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/emulators/netbsd32_compat16/Makefile b/emulators/netbsd32_compat16/Makefile index da7bab4cc98..4040788f6a8 100644 --- a/emulators/netbsd32_compat16/Makefile +++ b/emulators/netbsd32_compat16/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/11/08 16:23:02 mrg Exp $ +# $NetBSD: Makefile,v 1.2 2003/05/05 17:48:33 grant Exp $ # .if ${MACHINE_ARCH} == "sparc64" @@ -48,8 +48,9 @@ do-build: # XXX using pax to copy symlinks properly. do-install: - ${INSTALL_DATA_DIR} ${COMPAT_LIBDIR} ${COMPAT_XLIBDIR} \ - ${COMPAT_LIBEXECDIR} + ${INSTALL_DATA_DIR} ${COMPAT_LIBDIR} + ${INSTALL_DATA_DIR} ${COMPAT_XLIBDIR} + ${INSTALL_DATA_DIR} ${COMPAT_LIBEXECDIR} (cd ${WRKDIR}/usr/lib; pax -rwv lib*.so* i18n/lib*.so* ${COMPAT_LIBDIR}) (cd ${WRKDIR}/usr/X11R6/lib; pax -rwv lib*.so* ${COMPAT_XLIBDIR}) (cd ${WRKDIR}/usr/libexec; pax -rwv ld.*so ${COMPAT_LIBEXECDIR}) |