summaryrefslogtreecommitdiff
path: root/package/pkgmaker
diff options
context:
space:
mode:
authorThorsten Glaser <tg@mirbsd.org>2009-12-20 15:03:29 +0059
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-20 17:37:02 +0100
commitddd71a0e407ff4c79675fcee0de4f21ec0c6fcfe (patch)
treecf40e69f1207938895fd3ccac7cc9babfb7c3aa8 /package/pkgmaker
parent77a222d5094d902128d355685501c7b30c8cccca (diff)
skip directories containing Config.in.manual
Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Diffstat (limited to 'package/pkgmaker')
-rw-r--r--package/pkgmaker2
1 files changed, 2 insertions, 0 deletions
diff --git a/package/pkgmaker b/package/pkgmaker
index 879c5eff4..270866805 100644
--- a/package/pkgmaker
+++ b/package/pkgmaker
@@ -39,6 +39,8 @@ done
# build Config.in files and resolve dependencies
for dn in */Makefile; do
dn=${dn%/*}
+ # skip if we take care of this one manually
+ [[ -s $dn/Config.in.manual ]] && continue
pbar="Pass 2: $dn ..."
print -nu2 "$pbar\r"
cd $dn