diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-26 04:46:05 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-26 04:46:05 +0000 |
commit | 17cb623cc1f62c141a6f0a97ffe8f3a0289d7708 (patch) | |
tree | 4cebbf3c9d0a43d28c3c507a876db524b455b1fa /misc | |
parent | 390386b76d94bbacefca973c537b21cd8d5a7134 (diff) |
Notes
Diffstat (limited to 'misc')
-rw-r--r-- | misc/compat4x/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/misc/compat4x/Makefile b/misc/compat4x/Makefile index 09e04949db11..43b57a30e83c 100644 --- a/misc/compat4x/Makefile +++ b/misc/compat4x/Makefile @@ -23,7 +23,6 @@ TARGET_DIR= ${PREFIX}/lib/compat TARGET32_DIR= ${PREFIX}/lib32/compat LDCONFIG_LIB32= ${LDCONFIG} -32 -NO_STAGE= yes .include <bsd.port.pre.mk> ONLY_FOR_ARCH= i386 amd64 @@ -93,10 +92,10 @@ do-extract: .endif do-install: - @${MKDIR} ${TARGET_DIR} - ${INSTALL_DATA} ${WRKSRC}/* ${TARGET_DIR}/ + @${MKDIR} ${STAGEDIR}${TARGET_DIR} + ${INSTALL_DATA} ${WRKSRC}/* ${STAGEDIR}${TARGET_DIR}/ .for lib in ${FREEBSD4_LIBS} - ${LN} -sf ${lib}.compat4x ${TARGET_DIR}/${lib} + ${LN} -sf ${lib}.compat4x ${STAGEDIR}${TARGET_DIR}/${lib} .endfor post-install: |