diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-21 20:46:26 -0400 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 13:29:22 +0000 |
commit | bcef3fdb440efbf6cfe6622b7d9c93e5a3bcd2e8 (patch) | |
tree | e2371a24e5938d579770b34ad4e47f3797bc0c3f /perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild | |
parent | 9aa931e9664a4a05f15a5a433d19e6d7b22b5df1 (diff) | |
download | slackbuilds-bcef3fdb440efbf6cfe6622b7d9c93e5a3bcd2e8.tar.gz |
perl/perl-Carp-Clan: Remove template comment, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild')
-rw-r--r-- | perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild b/perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild index f6367d5c36..766eba35ef 100644 --- a/perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild +++ b/perl/perl-Carp-Clan/perl-Carp-Clan.SlackBuild @@ -32,7 +32,7 @@ DOCS="README" if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -43,8 +43,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -77,25 +77,20 @@ make make test make install DESTDIR=$PKG -# Move man pages mv $PKG/usr/share/man $PKG/usr/ -# Compress man pages ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done ) -# Remove perllocal.pod and other special files that don't need to be installed ( cd $PKG - # Remove 'special' files find . -name perllocal.pod \ -o -name ".packlist" \ -o -name "*.bs" \ | xargs rm -f ) -# Remove empty directories find $PKG -depth -type d -empty -delete mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |