| author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-08-24 14:21:10 (GMT) |
|---|---|---|
| committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-08-24 14:21:10 (GMT) |
| commit | 628aad2aec5e33dcf00b573891c122ad91438bc4 (patch) (side-by-side diff) | |
| tree | f267ce719bc86b4e8e1ce66df303528471c75c2e | |
| parent | b5077b293b945edfcd84b6911a2c1b9cb234a129 (diff) | |
| download | core-628aad2aec5e33dcf00b573891c122ad91438bc4.zip core-628aad2aec5e33dcf00b573891c122ad91438bc4.tar.gz | |
restore the 'initialization of warn'
Change-Id: I72ed0955bf6d47e04be7c182994ba12e53e40a9a
| -rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index ed3a4a1..2630af3 100644 --- a/configure.in +++ b/configure.in @@ -49,13 +49,14 @@ PathFormat() fi } +cat /dev/null > warn have_WARNINGS="no" add_warning() { if test "$have_WARNINGS" = "no" ; then - echo "*************************************" > warn + echo "*************************************" >> warn + have_WARNINGS="yes" fi - have_WARNINGS="yes" echo "* WARNING : $@" >> warn } @@ -12342,6 +12343,6 @@ $GNUMAKE check _EOF fi -cat warn 2> /dev/null +cat warn dnl vim:set shiftwidth=4 softtabstop=4 expandtab: |
