diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-07-26 09:53:22 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-07-26 09:56:08 +0000 |
commit | ad15b0e748b6bd93ef1e36b1c605c1da29d10565 (patch) | |
tree | 96b894ab1bc4bb87577148a007bbf2cd59ec1f23 | |
parent | 572f9a37ba6cb1cfd77cff81b0d46380ee51a528 (diff) | |
download | ports-ad15b0e748b6bd93ef1e36b1c605c1da29d10565.tar.gz ports-ad15b0e748b6bd93ef1e36b1c605c1da29d10565.zip |
emulators/wine: Fix up pkg32.sh
In my original commit I missed the last line actually invoking pkg.
Fix this up and add a comment above.
PR: 257284
Reported by: Alex S <iwtcex@gmail.com>
-rw-r--r-- | emulators/wine/Makefile | 1 | ||||
-rw-r--r-- | emulators/wine/pkg32.sh | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 7af4e43d8a44..6386fa7b18b8 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -2,6 +2,7 @@ PORTNAME= wine DISTVERSION= 6.0.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ diff --git a/emulators/wine/pkg32.sh b/emulators/wine/pkg32.sh index a26ee5b5d7f6..267fb8b38ca4 100644 --- a/emulators/wine/pkg32.sh +++ b/emulators/wine/pkg32.sh @@ -10,4 +10,6 @@ I386_ROOT="${WINE_i386_ROOT:-$HOME/.i386-wine-pkg}" mkdir -p "$I386_ROOT" ABI=$(pkg config ABI | sed s/amd64/i386/) +# Show what we're going to do, then do it. echo pkg -o ABI="$ABI" -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@" +exec pkg -o ABI="$ABI" -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@" |