diff options
author | Michael Gehring <mg@ebfe.org> | 2018-05-17 20:51:15 +0000 |
---|---|---|
committer | maxice8 <30738253+maxice8@users.noreply.github.com> | 2018-08-20 15:03:31 +0000 |
commit | 71865896180f80c3f5c3ed04244d9f135803b590 (patch) | |
tree | 90bb318b4ad3249cf07efd844b016c415b8ba711 /common/hooks | |
parent | 197454c2e65195fcc4ecf6851c0118582b21035f (diff) | |
download | void-packages-71865896180f80c3f5c3ed04244d9f135803b590.tar void-packages-71865896180f80c3f5c3ed04244d9f135803b590.tar.gz void-packages-71865896180f80c3f5c3ed04244d9f135803b590.tar.bz2 void-packages-71865896180f80c3f5c3ed04244d9f135803b590.tar.lz void-packages-71865896180f80c3f5c3ed04244d9f135803b590.tar.xz void-packages-71865896180f80c3f5c3ed04244d9f135803b590.tar.zst void-packages-71865896180f80c3f5c3ed04244d9f135803b590.zip |
common/hooks/pre-pkg/04-generate-runtime-deps.sh: remove unused variable
Diffstat (limited to 'common/hooks')
-rw-r--r-- | common/hooks/pre-pkg/04-generate-runtime-deps.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh index 556fbc87ef6..d244a8495c7 100644 --- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh +++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh @@ -47,7 +47,7 @@ store_pkgdestdir_rundeps() { } hook() { - local depsftmp f lf j tmplf mapshlibs sorequires _curdep + local depsftmp f lf j mapshlibs sorequires _curdep # Disable trap on ERR, xbps-uhelper cmd might return error... but not something # to be worried about because if there are broken shlibs this hook returns @@ -55,7 +55,6 @@ hook() { trap - ERR mapshlibs=$XBPS_COMMONDIR/shlibs - tmplf=$XBPS_SRCPKGDIR/$pkgname/template if [ -n "$noarch" -o -n "$noverifyrdeps" ]; then store_pkgdestdir_rundeps |