diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2016-04-13 23:21:02 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-04-16 08:20:02 +0700 |
commit | 6a54f86e7007dd756b18c178b85ca6b7a6ead7f0 (patch) | |
tree | f462322ce2bfa984febddf518311db998d5fae42 /network/heimdal/heimdal.SlackBuild | |
parent | b88738ef84bd060058fdb57b599bd18f88ee3c09 (diff) | |
download | slackbuilds-6a54f86e7007dd756b18c178b85ca6b7a6ead7f0.tar.gz |
network/heimdal: Patched to fix build with texinfo-6.1.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/heimdal/heimdal.SlackBuild')
-rw-r--r-- | network/heimdal/heimdal.SlackBuild | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/network/heimdal/heimdal.SlackBuild b/network/heimdal/heimdal.SlackBuild index fe121bbff0..8a0ebe70b4 100644 --- a/network/heimdal/heimdal.SlackBuild +++ b/network/heimdal/heimdal.SlackBuild @@ -52,10 +52,17 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \ - -o -perm 400 \) -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# Fix build failure with texinfo-6.1 +# https://github.com/heimdal/heimdal/commits/master/doc +patch -p1 < $CWD/0e0351776a48a69ec704085e554a0653d8179452.patch +patch -p1 < $CWD/1846c7a35d1091d3b6140c56befd7fee0a91dcbb.patch +patch -p1 < $CWD/a1d7f1f3e3cc6717f32a517053015585c47177ba.patch +patch -p1 < $CWD/115f88a3e7901541a67964d41bbd2a1866cfc521.patch CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |