diff options
author | martin <martin@pkgsrc.org> | 2003-07-02 09:24:43 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2003-07-02 09:24:43 +0000 |
commit | 2c39193d5051460157a48784caac97b8b36dfde4 (patch) | |
tree | f3a591cdf04415434a85162fea507412c01ac3da /emulators | |
parent | 9d3c1f5ea715b29a113a8b39251f090739716f96 (diff) | |
download | pkgsrc-2c39193d5051460157a48784caac97b8b36dfde4.tar.gz |
If no linux emulation is available, set SUSE_VERSION to 0. This avoids
syntax errors in carelessly written makefiles and makes the PKG_SKIP_REASON
logic succeed.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/suse_linux/Makefile.application | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/suse_linux/Makefile.application b/emulators/suse_linux/Makefile.application index af0e86813ec..7454ede5833 100644 --- a/emulators/suse_linux/Makefile.application +++ b/emulators/suse_linux/Makefile.application @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.application,v 1.8 2003/07/02 09:02:59 grant Exp $ +# $NetBSD: Makefile.application,v 1.9 2003/07/02 09:24:43 martin Exp $ .include "../../mk/bsd.prefs.mk" @@ -23,5 +23,6 @@ SUSE_VERSION= 7.3 # This speeds up the marking of all compat_linux packages # as not available. SUSE_DIR_PREFIX= suse +SUSE_VERSION= 0 PKG_SKIP_REASON+= "${PKGNAME} requires compat_linux, which is not available for ${MACHINE_PLATFORM}" .endif |