summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-09-18 22:45:54 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-09-18 22:45:54 -0400
commit92b9133e4ab3ef0899cee58885f455a393c553fb (patch)
tree7ec2637d43eca41b0452f649fc663acae7e60233 /src
parentab8dc8d4204d198f01e1fc7f59498a2794df829f (diff)
librefetch: Don't inherit `options` or `PURGE_TARGETS`
Diffstat (limited to 'src')
-rwxr-xr-xsrc/librefetch/librefetch4
-rw-r--r--src/librefetch/librefetch.8.ronn4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/librefetch/librefetch b/src/librefetch/librefetch
index 3525db3..7691355 100755
--- a/src/librefetch/librefetch
+++ b/src/librefetch/librefetch
@@ -298,8 +298,8 @@ checkdepends=()
makedepends=("${mkdepends[@]}")
####
-options+=(!strip docs libtool emptydirs !zipman purge !upx)
-PURGE_TARGETS+=(.bzr/ .cvs/ .git/ .hg/ .svn/ .makepkg/)
+options=(!strip docs libtool staticlibs emptydirs !zipman purge !upx)
+PURGE_TARGETS=(.bzr/ .cvs/ .git/ .hg/ .svn/ .makepkg/)
####
if ! declare -f mksource >/dev/null; then
diff --git a/src/librefetch/librefetch.8.ronn b/src/librefetch/librefetch.8.ronn
index 7fa15d4..c2b8ffe 100644
--- a/src/librefetch/librefetch.8.ronn
+++ b/src/librefetch/librefetch.8.ronn
@@ -128,11 +128,11 @@ Other changes:
* `options=()` is set have `makepkg` avoid making changes to
`$pkgdir`. The exact change is:
- options+=(!strip docs libtool emptydirs !zipman purge !upx)
+ options=(!strip docs libtool staticlibs emptydirs !zipman purge !upx)
* `PURGE_TARGETS=()` has vcs directories added to it:
- PURGE_TARGETS+=(.bzr/ .cvs/ .git/ .hg/ .svn/ .makepkg/)
+ PURGE_TARGETS=(.bzr/ .cvs/ .git/ .hg/ .svn/ .makepkg/)
### MAKEPKG MODIFICATIONS