1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00

Unbreak emulators/i386-wine(-devel) builds.

With the removal of REINPLACE_PLIST in r367153 building wine on FreeBSD/i386
broke.  This was not detected in an exp-run as i386-wine is marked IGNORE
unless WINE_CROSS_BUILD is defined (to protect the build infrastructure and
avoid confusion).

PR:	193734
This commit is contained in:
David Naylor 2014-09-22 18:25:55 +00:00
parent 2674647816
commit bcaa0f659c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=368984
2 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,8 @@ IGNORE= This port is not for consumption on FreeBSD/i386. To cross-build for F
# Hook into post-install and do some adapting to make i386 binaries work nicely
# under FreeBSD/amd64
post-install-script:
# Fix pkg-plist references
${REINPLACE_CMD} -e 's!lib/!lib32/!g' ${TMPPLIST}
# Install bounce script to access the 32bit executables
${INSTALL_SCRIPT} ${SLAVEDIR}/files/binbounce ${STAGEDIR}${PREFIX}/bin/wine
for i in `grep ^bin ${TMPPLIST} | xargs -n1 basename` ; do \

View File

@ -30,6 +30,8 @@ IGNORE= This port is not for consumption on FreeBSD/i386. To cross-build for F
# Hook into post-install and do some adapting to make i386 binaries work nicely
# under FreeBSD/amd64
post-install-script:
# Fix pkg-plist references
${REINPLACE_CMD} -e 's!lib/!lib32/!g' ${TMPPLIST}
# Install bounce script to access the 32bit executables
${INSTALL_SCRIPT} ${.CURDIR}/files/binbounce ${STAGEDIR}${PREFIX}/bin/wine
for i in `grep ^bin ${TMPPLIST} | xargs -n1 basename` ; do \