diff options
author | mynacol | 2021-01-04 21:59:37 +0100 |
---|---|---|
committer | mynacol | 2021-01-04 21:59:37 +0100 |
commit | 425db8026990bdad6d40ca83a6c5eef86cf93bee (patch) | |
tree | 838b0a8ab34dc6ba21c508c3e5767a215609aa78 | |
parent | 0cd86e91880a1a0bd06794bf35ca364b4aac36e8 (diff) | |
download | aur-425db8026990bdad6d40ca83a6c5eef86cf93bee.tar.gz |
Remove symlink /usr/bin/lld
It is also provided by extra/lld
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = android-sdk-build-tools pkgdesc = Build-Tools for Google Android SDK (aapt, aidl, dexdump, dx, llvm-rs-cc) pkgver = r30.0.3 - pkgrel = 3 + pkgrel = 4 url = https://developer.android.com/studio/releases/build-tools arch = i686 arch = x86_64 @@ -5,7 +5,7 @@ pkgname=android-sdk-build-tools #_ver=$(cat "${srcdir}/$_android/source.properties" |grep ^Pkg.Revision=|sed 's/Pkg.Revision=\([0-9.]*\).*/\1/') _ver=30.0.3 pkgver=r$_ver -pkgrel=3 +pkgrel=4 pkgdesc='Build-Tools for Google Android SDK (aapt, aidl, dexdump, dx, llvm-rs-cc)' arch=('i686' 'x86_64') url="https://developer.android.com/studio/releases/build-tools" @@ -32,7 +32,8 @@ package() { # Add symlinks to binaries to usr/bin/ mkdir -p usr/bin/ - binaries=("aapt" "aapt2" "aidl" "apksigner" "bcc_compat" "d8" "dexdump" "dx" "lld" "llvm-rs-cc" "mainDexClasses" "split-select" "zipalign") + # lld is also provided by extra/lld, not creating symlink + binaries=("aapt" "aapt2" "aidl" "apksigner" "bcc_compat" "d8" "dexdump" "dx" "llvm-rs-cc" "mainDexClasses" "split-select" "zipalign") for f in "${binaries[@]}" do ln -s "/$target/$f" "usr/bin/$f" |