diff options
author | B. Watson <yalhcru@gmail.com> | 2018-02-19 16:12:36 -0500 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2018-06-14 01:14:25 +0100 |
commit | f7e779001c685e33415bc81b068211ed14b2a9a4 (patch) | |
tree | ba96a0fee0effcc9cd54d34fd08da55dc1c794e3 /desktop/wmudmount/wmudmount.SlackBuild | |
parent | efa619c20cb3bb4bcf1e04d95f24a1bebecb4f1b (diff) | |
download | slackbuilds-f7e779001c685e33415bc81b068211ed14b2a9a4.tar.gz |
desktop/wmudmount: Fix build on -current.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'desktop/wmudmount/wmudmount.SlackBuild')
-rw-r--r-- | desktop/wmudmount/wmudmount.SlackBuild | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/desktop/wmudmount/wmudmount.SlackBuild b/desktop/wmudmount/wmudmount.SlackBuild index cb5322bbd7..bd98f08553 100644 --- a/desktop/wmudmount/wmudmount.SlackBuild +++ b/desktop/wmudmount/wmudmount.SlackBuild @@ -28,6 +28,8 @@ # Now maintained by B. Watson <yalhcru@gmail.com> +# 20180219 bkw: fix build on -current (no harm done on 14.2) + # 20160818 bkw: # - take over maintenance # - i486 => i586 @@ -85,6 +87,10 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# 20180219 bkw: perl 5.26 in -current requires curly braces to be escaped +# inside a regex, when they're being use to match a literal curly brace. +patch -p1 < $CWD/perlfix.diff + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |