diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2013-05-29 19:29:32 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-07 11:28:16 -0600 |
commit | b5bb13725da2589ea784242438bf088567b9fada (patch) | |
tree | b3b8efa7552766ac3eb459b9e94900d38c7905d7 /system/gnome-vfs | |
parent | 6d01b25a25a30f5535139a3994fa452b568dd0a8 (diff) | |
download | slackbuilds-b5bb13725da2589ea784242438bf088567b9fada.tar.gz |
system/gnome-vfs: Fix for the newer glib.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/gnome-vfs')
-rw-r--r-- | system/gnome-vfs/gnome-vfs.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/system/gnome-vfs/gnome-vfs.SlackBuild b/system/gnome-vfs/gnome-vfs.SlackBuild index d90a323ddd..39ab049319 100644 --- a/system/gnome-vfs/gnome-vfs.SlackBuild +++ b/system/gnome-vfs/gnome-vfs.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=gnome-vfs VERSION=${VERSION:-2.24.4} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,6 +69,9 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Fix for the newer glib +sed -i "/-DG_DISABLE_DEPRECATED/d" */Makefile.* + CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |