diff options
author | joerg <joerg> | 2006-04-28 09:08:32 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-04-28 09:08:32 +0000 |
commit | 3448427ee9da1e9ca4c9a31d7d57ea649102200a (patch) | |
tree | a1136eb0dba8029923ae28e0ec908decbcf1134c /emulators/suse91_linux | |
parent | 2fc18bc5ce3d0ba598132573adb0dc472494608c (diff) | |
download | pkgsrc-3448427ee9da1e9ca4c9a31d7d57ea649102200a.tar.gz |
Add a mechanism to extend the rpm file list of suse9.1 packages.
Use it to include the shared library symlinks in suse91_x11,
they have been created and removed by ldconfig before. Bump revision.
Diffstat (limited to 'emulators/suse91_linux')
-rw-r--r-- | emulators/suse91_linux/Makefile.common | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/suse91_linux/Makefile.common b/emulators/suse91_linux/Makefile.common index a15549df5cc..e5f452e530c 100644 --- a/emulators/suse91_linux/Makefile.common +++ b/emulators/suse91_linux/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.13 2005/12/12 14:43:24 joerg Exp $ +# $NetBSD: Makefile.common,v 1.14 2006/04/28 09:08:32 joerg Exp $ .include "../../emulators/suse91_linux/vars.mk" .include "../../emulators/suse91_linux/arch.mk" @@ -60,6 +60,9 @@ do-install: ${RM} -f ${PLIST_SRC}; \ ${CP} ${PKGSRCDIR}/emulators/suse_linux/PLIST_dynamic ${PLIST_SRC} ; \ fi + @if [ -f ${PKGDIR}/PLIST_rpmfix.${MACHINE_ARCH} ]; then \ + ${SED} -e 's,^/,${EMULSUBDIR}/,' ${PKGDIR}/PLIST_rpmfix.${MACHINE_ARCH} >> ${PLIST_SRC}; \ + fi ${RPM2PKG} ${RPM2PKGARGS} @if ${GREP} -q 'lib.*\.so' ${PLIST_SRC}; then \ ${ECHO_MSG} "===> [Automatic Linux shared object handling]"; \ |