diff options
author | grant <grant> | 2003-07-02 09:02:59 +0000 |
---|---|---|
committer | grant <grant> | 2003-07-02 09:02:59 +0000 |
commit | 26c23b2675d7639aa161eb547640ab9ffb269f8f (patch) | |
tree | c880b578090de892aa1927d3096a6757d4f27d6a /emulators | |
parent | 1571f36368ed8cc8a14e9241dd48d662a42aac09 (diff) | |
download | pkgsrc-26c23b2675d7639aa161eb547640ab9ffb269f8f.tar.gz |
style nits
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/suse_linux/Makefile.application | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/emulators/suse_linux/Makefile.application b/emulators/suse_linux/Makefile.application index e1e83ae608b..af0e86813ec 100644 --- a/emulators/suse_linux/Makefile.application +++ b/emulators/suse_linux/Makefile.application @@ -1,21 +1,21 @@ -# $NetBSD: Makefile.application,v 1.7 2003/07/02 09:00:56 grant Exp $ +# $NetBSD: Makefile.application,v 1.8 2003/07/02 09:02:59 grant Exp $ .include "../../mk/bsd.prefs.mk" -.if (${OPSYS} == NetBSD) && (${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == powerpc) +.if ${OPSYS} == "NetBSD" && (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "powerpc") LINUX_KERNEL_OSRELEASE!= (/sbin/sysctl -n emul.linux.kern.osrelease 2>/dev/null; ${ECHO} 2.0.38) | ${HEAD} -1 -.if (${LINUX_KERNEL_OSRELEASE} == 2.0.38) +. if ${LINUX_KERNEL_OSRELEASE} == "2.0.38" SUSE_DIR_PREFIX= suse64 SUSE_VERSION= 6.4 -.else +. else SUSE_DIR_PREFIX= suse SUSE_VERSION= 7.3 -.endif +. endif -.if defined(RPMFILES) -. include "../../emulators/${SUSE_DIR_PREFIX}_linux/Makefile.common" -.endif +. if defined(RPMFILES) +. include "../../emulators/${SUSE_DIR_PREFIX}_linux/Makefile.common" +. endif .else # we put a value here so that the creation of the bulk |