diff options
| author | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-11 19:45:28 +0100 |
|---|---|---|
| committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-03-11 19:45:28 +0100 |
| commit | 0900eb6353809dd6cdc76bf1287f8df66e13577e (patch) | |
| tree | 8ba47085c64cce893a5c10abe939e07ff2d08c50 | |
| parent | cd75563acd2459f874b50b396a312bb9638a1e9c (diff) | |
generate Config.in even if Config.in.manual exist for base-files
| -rw-r--r-- | package/pkgmaker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/pkgmaker b/package/pkgmaker index ccd619ac5..ea89424e7 100644 --- a/package/pkgmaker +++ b/package/pkgmaker @@ -43,7 +43,7 @@ done for dn in */Makefile; do dn=${dn%/*} # skip if we take care of this one manually - [[ -s $dn/Config.in.manual ]] && continue + [[ $dn != "base-files" ]] && [[ -s $dn/Config.in.manual ]] && continue pbar="Pass 2: $dn ..." print -nu2 "$pbar\r" cd $dn |
