diff options
author | David Spencer <baildon.research@googlemail.com> | 2015-12-07 22:47:33 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 5040b8bd0d71a84e4f75da20d93182b29a0bfad9 (patch) | |
tree | b4562e84619957228343037af8db9dadc74f4b96 /desktop | |
parent | 167b044285fe075aed0ab407b53f630ddeac4644 (diff) | |
download | slackbuilds-5040b8bd0d71a84e4f75da20d93182b29a0bfad9.tar.gz |
desktop/afterstep: Force std=gnu89 in CFLAGS/CXXFLAGS.
Signed-off-by: David Spencer <baildon.research@googlemail.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/afterstep/afterstep.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/afterstep/afterstep.SlackBuild b/desktop/afterstep/afterstep.SlackBuild index e82193ae32..dc9b4a4624 100644 --- a/desktop/afterstep/afterstep.SlackBuild +++ b/desktop/afterstep/afterstep.SlackBuild @@ -73,8 +73,8 @@ 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 {} \; -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ +CFLAGS="$SLKCFLAGS -std=gnu89" \ +CXXFLAGS="$SLKCFLAGS -std=gnu89" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ |