diff options
author | hubertf <hubertf> | 2000-08-31 02:32:32 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-08-31 02:32:32 +0000 |
commit | 7820d7b65bb486647ac610b7056eab0b2d235757 (patch) | |
tree | 9e9fcdad00dc36d14022f91c8e54c7da4916d84d /mk | |
parent | ccb333bbc2a587d7fed4d369a6e4b92e4c21e733 (diff) | |
download | pkgsrc-7820d7b65bb486647ac610b7056eab0b2d235757.tar.gz |
* add CHECK_SHLIBS variable that can be set to "no" in emul/compat packages,
to precent check-shlibs from discovering that ldd(8) can't deal with
e.g. Linux binaries
* On "make reinstall", make sure the package gets deinstalled first.
No more 'make deinstall ; make reinstall'.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 01b7f3c506e..62fd7e26377 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.556 2000/08/30 18:49:18 jlam Exp $ +# $NetBSD: bsd.pkg.mk,v 1.557 2000/08/31 02:32:32 hubertf Exp $ # # This file is in the public domain. # @@ -35,6 +35,7 @@ DEF_UMASK?= 0022 CLEANDEPENDS?= NO DEINSTALLDEPENDS?= NO # add -R to pkg_delete REINSTALL?= NO # reinstall upon update +CHECK_SHLIBS?= YES # run check-shlibs after install NOCLEAN?= NO # don't clean up after update LOCALBASE?= ${DESTDIR}/usr/local @@ -1757,7 +1758,8 @@ root-install: ${_PKG_SILENT}${_PKG_DEBUG}cd ${.CURDIR} && ${MAKE} ${MAKEFLAGS} fake-pkg .endif # !NO_PKG_REGISTER ${_PKG_SILENT}${_PKG_DEBUG}${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE} -.if defined(PKG_DEVELOPER) + echo CHECK_SHLIBS=${CHECK_SHLIBS} +.if defined(PKG_DEVELOPER) && (${CHECK_SHLIBS} == "YES") @${MAKE} ${MAKEFLAGS} check-shlibs .endif @@ -1944,7 +1946,7 @@ checkpatch: # Special target to re-run install .if !target(reinstall) -reinstall: +reinstall: deinstall ${_PKG_SILENT}${_PKG_DEBUG}${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE} ${PLIST} ${_PKG_SILENT}${_PKG_DEBUG}DEPENDS_TARGET=${DEPENDS_TARGET} ${MAKE} ${MAKEFLAGS} install .endif |