summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2021-08-18 10:52:06 +0000
committer Eric Hameleers <alien@slackware.com>2021-08-18 10:52:06 +0000
commited4fd9a5094a95b93ad74784f3d17532efb9e5eb (patch)
tree4d75830029ff8b58ad530025303fba3963019a95
parent9ab0fd4d3569e642a4a45fd3565d9fa1c56708d1 (diff)
downloadasb-ed4fd9a5094a95b93ad74784f3d17532efb9e5eb.tar.gz
asb-ed4fd9a5094a95b93ad74784f3d17532efb9e5eb.tar.xz
handbrake: fix a syntax error in the script
-rwxr-xr-xhandbrake/build/handbrake.SlackBuild7
1 files changed, 6 insertions, 1 deletions
diff --git a/handbrake/build/handbrake.SlackBuild b/handbrake/build/handbrake.SlackBuild
index 82b97e64..90e03637 100755
--- a/handbrake/build/handbrake.SlackBuild
+++ b/handbrake/build/handbrake.SlackBuild
@@ -82,6 +82,8 @@
# * Update.
# 1.4.0-1: 08/aug/2021 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 1.4.1-1: 18/aug/2021 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh handbrake.SlackBuild' to build a Slackware package.
# The package (.txz) and .txt file as well as build logs are created in /tmp .
@@ -91,7 +93,7 @@
PRGNAM=handbrake
-VERSION=${VERSION:-1.4.0}
+VERSION=${VERSION:-1.4.1}
# Find the revision for a release tag (does not currently work!):
RELREV=${RELREV:-""}
BUILD=${BUILD:-1}
@@ -406,6 +408,9 @@ echo "++"
if [ $(cat /etc/slackware-version |cut -d' ' -f2- |cut -d. -f1) -lt 15 ]; then
export CC=clang
export CXX=clang++
+else
+ export CC=gcc
+ export CXX=g++
fi
cd $TMP/tmp-$PRGNAM