diff options
author | Síle Ekaterin Liszka <sheila@vulpine.house> | 2022-06-18 18:02:22 -0700 |
---|---|---|
committer | Síle Ekaterin Liszka <sheila@vulpine.house> | 2022-06-18 18:02:22 -0700 |
commit | ee51a1b88b433257ce5eca25b01480bbaadd5080 (patch) | |
tree | 3816871b86629db9890775cf56f84ca4e1b3d792 | |
parent | 5de888e85b3984497ca853859aa5cf0d4467fb30 (diff) | |
download | packages-shell-fixes.tar.gz packages-shell-fixes.tar.bz2 packages-shell-fixes.tar.xz packages-shell-fixes.zip |
system/slibtool: set $SHELL to something reproduceableshell-fixes
-rw-r--r-- | system/slibtool/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/slibtool/APKBUILD b/system/slibtool/APKBUILD index a1ac2142d..a63c17ba3 100644 --- a/system/slibtool/APKBUILD +++ b/system/slibtool/APKBUILD @@ -13,7 +13,7 @@ subpackages="" source="https://git.foss21.org/slibtool/snapshot/$pkgname-$pkgver.tar.xz" build() { - ./configure \ + SHELL=/bin/sh ./configure \ --prefix=/usr make } |