diff options
author | Hunter Sezen <orbea@fredslev.dk> | 2018-05-19 15:38:05 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-05-20 08:35:08 +0700 |
commit | 213751664dd0d992b74500dc92d5c6c47823959b (patch) | |
tree | a42144e3a98a8e47e6e455d0f7eb6791183354a9 /games | |
parent | 8275a3aec6020f50fa05e2ae85e08c3bff7bf6c7 (diff) | |
download | slackbuilds-213751664dd0d992b74500dc92d5c6c47823959b.tar.gz |
games/pcsx2: Fix build.
This fixes an old and trivial bug where sed missed one line.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/pcsx2/pcsx2.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/pcsx2/pcsx2.SlackBuild b/games/pcsx2/pcsx2.SlackBuild index 7320ad98b7..df919ac0bb 100644 --- a/games/pcsx2/pcsx2.SlackBuild +++ b/games/pcsx2/pcsx2.SlackBuild @@ -139,7 +139,7 @@ cat $CWD/doinst.sh > $PKG/install/doinst.sh # Fix doinst.sh for x86_64 [ "$ARCH" = 'x86_64' ] && \ - sed -i 's|-loaders >|-loaders-32 >|' $PKG/install/doinst.sh + sed -i 's|-loaders |-loaders-32 |' $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |