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 | b99d59acd567c910807efc5c6f2a392238975705 (patch) | |
tree | 3bbf79339d4f3c8be7c6791ac9e2ea685b97bd1b /emulators/suse100_linux | |
parent | 4f48fd9868a846286dc8ff306d6f85822df7757b (diff) | |
download | pkgsrc-b99d59acd567c910807efc5c6f2a392238975705.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/suse100_linux')
-rw-r--r-- | emulators/suse100_linux/emulator.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/suse100_linux/emulator.mk b/emulators/suse100_linux/emulator.mk index ce0a086ffa3..291b2aa1fa2 100644 --- a/emulators/suse100_linux/emulator.mk +++ b/emulators/suse100_linux/emulator.mk @@ -1,4 +1,4 @@ -# $NetBSD: emulator.mk,v 1.2 2007/07/29 08:55:32 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. # @@ -43,7 +43,7 @@ DEPENDS_suse-10.0.x11?= suse_x11${_SUSE_VERSION_REQD}:../../emulators/suse100_x1 DEPENDS_suse-10.0.xml2?= suse_libxml2${_SUSE_VERSION_REQD}:../../emulators/suse100_libxml2 .if (${EMUL_ARCH} == "i386") && (${MACHINE_ARCH} == "x86_64") -. for _mod_ in ${_LINUX_MODULES} +. for _mod_ in ${_EMUL_MODULES} DEPENDS_suse-10.0.${_mod_}:= \ ${DEPENDS_suse-10.0.${_mod_}:S/^suse_/suse32_/:S/suse100_/&32_/} . endfor |