]> git.t-rg.ws Git - slackbuilds.git/commitdiff
shadowsocks-rust: removed a useless variable
authorfsLeg <fsleg@t-rg.ws>
Sat, 12 Feb 2022 19:16:38 +0000 (22:16 +0300)
committerfsLeg <fsleg@t-rg.ws>
Sat, 12 Feb 2022 19:16:38 +0000 (22:16 +0300)
shadowsocks-rust/shadowsocks-rust.SlackBuild

index 4dcd17d4b0d29adb909fab6220d549dedaba2479..ea0d3d349c1e646e0f3e52b5bb31b9d31c5cfd03 100755 (executable)
@@ -43,16 +43,12 @@ OUTPUT=${OUTPUT:-/tmp}
 
 if [ "$ARCH" = "i586" ]; then
   SLKCFLAGS="-O2 -march=i586 -mtune=i686"
-  CARGOTARGET="--target i586-unknown-linux-gnu"
 elif [ "$ARCH" = "i686" ]; then
   SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-  CARGOTARGET="--target i686-unknown-linux-gnu"
 elif [ "$ARCH" = "x86_64" ]; then
   SLKCFLAGS="-O2 -fPIC"
-  CARGOTARGET="--target x86_64-unknown-linux-gnu"
 else
   SLKCFLAGS="-O2"
-  CARGOTARGET=""
 fi
 
 set -e # Exit on most errors