diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-08 09:07:09 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-04-08 09:07:09 +0000 |
commit | 4044b7873a929ff0fb0ee902042e75acd10587d4 (patch) | |
tree | 99366ea04d41206cd21f21963d5e12e5eefb39f1 | |
parent | 73c01eda0e02a9c1b4ff40b5714677e122ac8871 (diff) | |
download | abuild-4044b7873a929ff0fb0ee902042e75acd10587d4.tar.gz abuild-4044b7873a929ff0fb0ee902042e75acd10587d4.tar.bz2 abuild-4044b7873a929ff0fb0ee902042e75acd10587d4.tar.xz abuild-4044b7873a929ff0fb0ee902042e75acd10587d4.zip |
abuild: reset $install for sub packages
fixes #22
-rwxr-xr-x | abuild | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -795,9 +795,10 @@ if [ -z "$newname" ]; then . "$APKBUILD" fi -# If we are handling a sub package then reset subpackages +# If we are handling a sub package then reset subpackages and install if [ -n "$subpkgname" ]; then subpackages= + install= fi trap 'die "Aborted by user"' INT |