diff options
| author | Alexander Barton <alex@barton.de> | 2006-03-11 01:48:50 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2006-03-11 01:48:50 +0000 |
| commit | 79dfd60a0ccb22561606d35e6732e18086b5092e (patch) | |
| tree | c8193a35c4203c9654a60a884986d9c1a4512e82 | |
| parent | 29ad5e0d9490f05de5b0e13542d9970330175597 (diff) | |
| download | ngircd-79dfd60a0ccb22561606d35e6732e18086b5092e.tar.gz ngircd-79dfd60a0ccb22561606d35e6732e18086b5092e.zip | |
Don't use "awk" directly, instead use $(AWK) variable.
| -rw-r--r-- | src/ngircd/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/Makefile.am b/src/ngircd/Makefile.am index 6f1ccd88..52bd1615 100644 --- a/src/ngircd/Makefile.am +++ b/src/ngircd/Makefile.am @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.48 2005/08/25 08:40:15 alex Exp $ +# $Id: Makefile.am,v 1.49 2006/03/11 01:48:50 alex Exp $ # AUTOMAKE_OPTIONS = ../portab/ansi2knr @@ -63,7 +63,7 @@ lint: if [ $$? -ne 0 ]; then \ waswarning=1; \ echo; grep -v "^Command Line: " lint.out; echo; \ - w=$$( grep "code warning" lint.out | awk "{ print \$$4 }" ); \ + w=$$( grep "code warning" lint.out | $(AWK) "{ print \$$4 }" ); \ [ "$$w" -gt 0 ] && warnings=`expr $$warnings + $$w`; \ files=`expr $$files + 1`; \ else \ |