diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-14 22:13:38 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-14 23:59:49 -0500 |
commit | faf48cd6e433b525296b1ebd9bd87d97029e796f (patch) | |
tree | b0d1b71ac62406b36d51c0d36cab56dc49bd8987 /misc/nvclock/nvclock.SlackBuild | |
parent | c91d4997d8b124a63a52ce51ea8f7146def2025e (diff) | |
download | slackbuilds-faf48cd6e433b525296b1ebd9bd87d97029e796f.tar.gz |
misc/nvclock: Patched to fix underlinking.
Diffstat (limited to 'misc/nvclock/nvclock.SlackBuild')
-rw-r--r-- | misc/nvclock/nvclock.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/nvclock/nvclock.SlackBuild b/misc/nvclock/nvclock.SlackBuild index ec5221a100..cee6772e4c 100644 --- a/misc/nvclock/nvclock.SlackBuild +++ b/misc/nvclock/nvclock.SlackBuild @@ -10,15 +10,13 @@ PRGNAM=nvclock VERSION=0.8b4 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -59,7 +57,8 @@ find . \ # Fixup DESTDIR usage correctly patch -p1 < $CWD/patches/nvclock-fix_DESTDIR.patch - +# Fix underlinking. +patch -p1 < $CWD/patches/nvclock-0.8b4-linkfix.patch # Fixup use of SLKCFLAGS # If this patch causes problems, then use the other one... patch -p1 < $CWD/patches/nvclock-use_ALL_CFLAGS.patch @@ -75,7 +74,8 @@ CXXFLAGS="$SLKCFLAGS" \ --disable-qt \ --build=$ARCH-slackware-linux -make +# Will not build in parallel. +make -j1 make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ |