diff options
author | Leonard Schmidt <lems@gmx.net> | 2017-11-11 00:47:39 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-11-11 07:07:32 +0700 |
commit | d5a227a20c62df5fac1874a30930d741aeab8dd6 (patch) | |
tree | 7e882b2d0ff028009887714caf01c6ce09c1a88c /system/yash/yash.SlackBuild | |
parent | 05d97cb08eb5dc5aa37d844b6569cfb2c75bb031 (diff) |
system/yash: Updated for version 2.46.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/yash/yash.SlackBuild')
-rw-r--r-- | system/yash/yash.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/yash/yash.SlackBuild b/system/yash/yash.SlackBuild index 1b8eae74cf4ac..88c70cafb57ca 100644 --- a/system/yash/yash.SlackBuild +++ b/system/yash/yash.SlackBuild @@ -23,8 +23,8 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=yash -VERSION=${VERSION:-2.45} -BUILD=${BUILD:-2} +VERSION=${VERSION:-2.46} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -41,16 +41,16 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-march=i586 -mtune=i686" + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-march=i686 -mtune=i686" + SLKCFLAGS="-O2 -march=i686 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-fPIC" + SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" else - SLKCFLAGS="" + SLKCFLAGS="-O2" LIBDIRSUFFIX="" fi |