diff options
author | Michael Bueker <m.bueker@berlin.de> | 2010-05-13 00:38:03 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:38:03 +0200 |
commit | 4b34d2ce8c01f90584cb2d15c184b109e0ffde61 (patch) | |
tree | 49c9edcfc55e1eaac0ac39f6c9b11fd23348cb37 /network/proxytunnel/proxytunnel.SlackBuild | |
parent | d639a09842bc6a3e35d3712159413c2948db5f6a (diff) | |
download | slackbuilds-4b34d2ce8c01f90584cb2d15c184b109e0ffde61.tar.gz |
network/proxytunnel: Updated for version 1.9.0
Diffstat (limited to 'network/proxytunnel/proxytunnel.SlackBuild')
-rw-r--r-- | network/proxytunnel/proxytunnel.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/network/proxytunnel/proxytunnel.SlackBuild b/network/proxytunnel/proxytunnel.SlackBuild index 1883820738..e76f7b141c 100644 --- a/network/proxytunnel/proxytunnel.SlackBuild +++ b/network/proxytunnel/proxytunnel.SlackBuild @@ -17,10 +17,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e # Exit on most errors @@ -64,4 +67,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |