diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-20 12:09:02 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-03-26 01:20:07 +0700 |
commit | 6933d27dd2556476e2c449d7e8a8490aadd2b171 (patch) | |
tree | 9f86ff82d7e507aa9959b39ee3e9b11f0ec5fcb6 /games | |
parent | 80d7f8b919b1b6a51c3e2aec609481c461d7899a (diff) |
games/hexglass: Fix 32-bit build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/hexglass/hexglass.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/hexglass/hexglass.SlackBuild b/games/hexglass/hexglass.SlackBuild index 100e4c7a8e20..6e1487a74452 100644 --- a/games/hexglass/hexglass.SlackBuild +++ b/games/hexglass/hexglass.SlackBuild @@ -22,6 +22,7 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220320 bkw: Modified by SlackBuilds.org, fix 32-bit build. # 20220220 bkw: Modified by SlackBuilds.org, BUILD=3: # - fix github filename mess. upstream includes the project name as the # first part of the tag name, so the correct name really is: @@ -89,7 +90,7 @@ find -L . \ qmake-qt4 # fix path installation -sed -i 's/INSTALL\_ROOT)\/usr\/lib64\/qt4\/bin/INSTALL\_ROOT)\/usr\/games/g' Makefile +sed -i 's/INSTALL\_ROOT)\/usr\/lib[^\/]*\/qt4\/bin/INSTALL\_ROOT)\/usr\/games/g' Makefile make make INSTALL_ROOT=$PKG install |