diff options
author | B. Watson <yalhcru@gmail.com> | 2017-02-14 16:57:26 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-02-18 07:54:15 +0700 |
commit | e805539905aaf7f21e30c2133e4351813c9dda54 (patch) | |
tree | 4a3d21c980390a44df96f136dfa5c2872ad3629f /system/reiser4progs/reiser4progs.SlackBuild | |
parent | ae160a0f651aefef0e7be9d0d40994fc1b03c379 (diff) | |
download | slackbuilds-e805539905aaf7f21e30c2133e4351813c9dda54.tar.gz |
system/reiser4progs: Fix 3rd party linking.
Diffstat (limited to 'system/reiser4progs/reiser4progs.SlackBuild')
-rw-r--r-- | system/reiser4progs/reiser4progs.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/system/reiser4progs/reiser4progs.SlackBuild b/system/reiser4progs/reiser4progs.SlackBuild index ab58d3f13a..1728c00da4 100644 --- a/system/reiser4progs/reiser4progs.SlackBuild +++ b/system/reiser4progs/reiser4progs.SlackBuild @@ -6,7 +6,7 @@ PRGNAM=reiser4progs VERSION=${VERSION:-1.1.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -52,6 +52,12 @@ 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 {} \; +# 20170214 bkw: Fix unresolved symbol errors when trying to link with +# -lreiser4. This doesn't affect reiser4progs itself, but allows other +# programs (in particular, partclone) to link with its library. Patched +# code originally came from the partclone maintainer. +patch -p1 < $CWD/fix_libreiser4_linking.diff + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |