[Slackbuilds-users] faust.SlackBuild problem

George Vlahavas vlahavas at gmail.com
Thu Aug 25 09:06:14 UTC 2016


Hi,

in the faust.SlackBuild, $ARCH is never set. You'll need to add something 
like this close to the top:

if [ -z "$ARCH" ]; then
   case "$( uname -m )" in
     i?86) ARCH=i586 ;;
     arm*) ARCH=arm ;;
        *) ARCH=$( uname -m ) ;;
   esac
fi

Regards,

George


More information about the SlackBuilds-users mailing list