diff options
author | joerg <joerg@pkgsrc.org> | 2006-09-19 19:58:46 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-09-19 19:58:46 +0000 |
commit | 6446a6349fa349b6caf602419860f8d5402aa879 (patch) | |
tree | 7bc8031763ddbd2b001e15462224fe00496d2baf /emulators/suse91_base | |
parent | b6f02b997e41f993eca3629ceef4a601fda69cc4 (diff) | |
download | pkgsrc-6446a6349fa349b6caf602419860f8d5402aa879.tar.gz |
Ensure that Linux ldd has the full path to bash without assuming
that /emul == /usr/pkg/emul. On DragonFly and FreeBSD, it is called
/compat and that broke the shared library check. Bump revisions of
suse100_base and suse91_base.
Diffstat (limited to 'emulators/suse91_base')
-rw-r--r-- | emulators/suse91_base/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/suse91_base/Makefile b/emulators/suse91_base/Makefile index 8b95ab97f70..f231d84dd1c 100644 --- a/emulators/suse91_base/Makefile +++ b/emulators/suse91_base/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.23 2006/06/23 15:48:50 jlam Exp $ +# $NetBSD: Makefile,v 1.24 2006/09/19 19:58:46 joerg Exp $ DISTNAME= suse_base-${SUSE_VERSION} -PKGREVISION= 11 +PKGREVISION= 12 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SUSE91} DISTFILES= ${RPMFILES} @@ -70,7 +70,7 @@ do-install: >>${PLIST_SRC} ${ECHO} "@unexec ${RMDIR} %D/${EMULSUBDIR}/etc 2>/dev/null || ${TRUE}" \ >>${PLIST_SRC} - ${SED} -e 's:#! :#! /${EMULSUBDIR}:' \ + ${SED} -e 's:#! :#! ${EMULDIR}:' \ -e 's:^RTLD=:RTLD=/${EMULSUBDIR}:' \ < ${LINUX_LDD} > ${LINUX_LDD}.new ${MV} ${LINUX_LDD}.new ${LINUX_LDD} |