diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2011-12-20 16:50:59 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2011-12-20 16:50:59 +0100 |
commit | 75d856f630b7727fde9ea229ee57fc9c2c8f92dc (patch) | |
tree | b6c26b66b1fa21efb1267afb494a827f87d662a8 | |
parent | d1659d8b5c52da9ea26e047032c40016bfb40018 (diff) | |
download | buildscripts-75d856f630b7727fde9ea229ee57fc9c2c8f92dc.tar.gz buildscripts-75d856f630b7727fde9ea229ee57fc9c2c8f92dc.tar.bz2 buildscripts-75d856f630b7727fde9ea229ee57fc9c2c8f92dc.zip |
fix BUILDS_FOR mechanism
-rwxr-xr-x | bin/nwt-build-package | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nwt-build-package b/bin/nwt-build-package index 3ba1890..338a0b2 100755 --- a/bin/nwt-build-package +++ b/bin/nwt-build-package @@ -136,7 +136,7 @@ EOF build_packages() { # use pbuilder for building all variants of this package - cat BUILDS_FOR | egrep -v '(^$|^#.*$)' | while read line; do + cat $PROJECT_DIR/BUILDS_FOR | egrep -v '(^$|^#.*$)' | while read line; do l_DIST=$(echo $line | cut -d":" -f1 | tr [A-Z] [a-z]) CODENAMES=${CODENAMES:-$(echo $line | cut -d":" -f2- | tr [A-Z] [a#-z])} echo "$DIST_SUPPORTED" | grep $l_DIST >/dev/null && { |