diff options
author | jlam <jlam> | 2006-05-22 22:22:02 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-05-22 22:22:02 +0000 |
commit | c534f2167664e9746737a15a375724fdf1455d5e (patch) | |
tree | ca98d60e91b0d89b789e521e62fea00e9c068707 /emulators/suse_linux | |
parent | 60e5ffaa4fc2a320e32b01fb6dedf22aaa79288e (diff) | |
download | pkgsrc-c534f2167664e9746737a15a375724fdf1455d5e.tar.gz |
Move the check-shlibs target from bsd.pkg.mk to bsd.pkg.check.mk where
it will live with other "check" targets run after package installation.
Get rid of SHLIB_HANDLING, whose meaning had mutated over the years
from one thing to another. Currently, it is used to basically note
whether the system's "ldd" command can be usefully run on the package's
binaries and libraries. Rename this variable to CHECK_SHLIBS_SUPPORTED
for more clarity.
CHECK_SHLIBS is now a variable set exclusively by the user in /etc/mk.conf
to note whether the check for missing run-time search paths is performed
after a package is installed. It defaults to "no" unless PKG_DEVELOPER
is set.
Diffstat (limited to 'emulators/suse_linux')
-rw-r--r-- | emulators/suse_linux/Makefile.application | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emulators/suse_linux/Makefile.application b/emulators/suse_linux/Makefile.application index 83dc9a93be4..7eae8b8cab0 100644 --- a/emulators/suse_linux/Makefile.application +++ b/emulators/suse_linux/Makefile.application @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.application,v 1.18 2006/03/09 20:42:38 tonio Exp $ +# $NetBSD: Makefile.application,v 1.19 2006/05/22 22:22:03 jlam Exp $ .include "../../mk/bsd.prefs.mk" @@ -28,4 +28,10 @@ USE_NATIVE_LINUX= # empty SUSE_DIR_PREFIX= suse SUSE_VERSION= 0 PKG_SKIP_REASON+= "${PKGNAME} requires compat_linux, which is not available for ${MACHINE_PLATFORM}" +# +# By default, we can't check for missing shared libraries nor note which +# shared libraries are provided and/or required by the package since the +# library support is via syscall emulation. +# +CHECK_SHLIBS_SUPPORTED?= no .endif |