diff options
author | jlam <jlam@pkgsrc.org> | 2007-07-30 13:38:41 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-07-30 13:38:41 +0000 |
commit | 3c9a55ecce44ac5429ff0b33c6e0645461a3407b (patch) | |
tree | 3bbf79339d4f3c8be7c6791ac9e2ea685b97bd1b /emulators/suse91_linux | |
parent | cdcb5eaa6ad0ad31383fc4d522cc0f5a290d5e88 (diff) | |
download | pkgsrc-3c9a55ecce44ac5429ff0b33c6e0645461a3407b.tar.gz |
s/_LINUX_MODULES/_EMUL_MODULES/g
_LINUX_MODULES was an old, internal name I used in my development of
the emulator framework that I had renamed to _EMUL_MODULES everywhere,
or so I had thought.
This should fix the problem where the dependencies on suse_* weren't
being converted into dependencies on suse32_* on x86_64 platforms when
building a "linux-i386" package.
Diffstat (limited to 'emulators/suse91_linux')
-rw-r--r-- | emulators/suse91_linux/emulator.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/suse91_linux/emulator.mk b/emulators/suse91_linux/emulator.mk index 687cedd3b6b..e8cee19966e 100644 --- a/emulators/suse91_linux/emulator.mk +++ b/emulators/suse91_linux/emulator.mk @@ -1,4 +1,4 @@ -# $NetBSD: emulator.mk,v 1.2 2007/07/29 08:55:39 jlam Exp $ +# $NetBSD: emulator.mk,v 1.3 2007/07/30 13:38:41 jlam Exp $ # # This file is included by linux-suse.mk in the emulator framework. # @@ -40,7 +40,7 @@ DEPENDS_suse-9.1.vmware?= suse_vmware${_SUSE_VERSION_REQD}:../../emulators/suse9 DEPENDS_suse-9.1.x11?= suse_x11${_SUSE_VERSION_REQD}:../../emulators/suse91_x11 .if (${EMUL_ARCH} == "i386") && (${MACHINE_ARCH} == "x86_64") -. for _mod_ in ${_LINUX_MODULES} +. for _mod_ in ${_EMUL_MODULES} DEPENDS_suse-9.1.${_mod_}:= \ ${DEPENDS_suse-9.1.${_mod_}:S/^suse_/suse32_/:S/suse91_/&32_/} . endfor |