diff options
author | lool <lool> | 2006-11-06 20:20:56 +0000 |
---|---|---|
committer | lool <lool> | 2006-11-06 20:20:56 +0000 |
commit | c348757fc7a8c4d87ce0ba3012ffc54e55b53f81 (patch) | |
tree | a4279e45be765735076e821394502c0b57970fe2 | |
parent | 8bc2c781cae56f1a6db134ded8a0c91416e7af00 (diff) | |
download | pbuilder-c348757fc7a8c4d87ce0ba3012ffc54e55b53f81.tar pbuilder-c348757fc7a8c4d87ce0ba3012ffc54e55b53f81.tar.gz |
* pbuilder-satisfydepends: drop an useless invocation of awk.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | pbuilder-satisfydepends | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -13,6 +13,7 @@ PBUILDERSATISFYDEPENDSCMD * pdebuild: pass --pbuildersatisfydepends to pdebuild-internal. * pbuilder-modules, pdebuild.1: document --pbuildersatisfydepends. + * pbuilder-satisfydepends: drop an useless invocation of awk. 2006-11-03 Loic Minier <lool@dooz.org> diff --git a/pbuilder-satisfydepends b/pbuilder-satisfydepends index b401248..ebc5754 100644 --- a/pbuilder-satisfydepends +++ b/pbuilder-satisfydepends @@ -104,7 +104,7 @@ tolower($0) ~ /^'"${BD_REGEXP}"':/ {p=1} sed 's/^[^: ]*://' | \ tr " " "/" | \ awk 'BEGIN{RS=","} {print}'); do - echo " -> Considering $(echo "$INSTALLPKGMULTI" | tr "/" " " | awk '{print $0}' )" + echo " -> Considering build-dep$(echo "$INSTALLPKGMULTI" | tr "/" " " )" SATISFIED="no" for INSTALLPKG in $(echo "$INSTALLPKGMULTI" | \ awk 'BEGIN{RS="|"} {print}'); do |