diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-08-24 09:21:10 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-08-24 09:21:10 -0500 |
commit | 628aad2aec5e33dcf00b573891c122ad91438bc4 (patch) | |
tree | f267ce719bc86b4e8e1ce66df303528471c75c2e /configure.in | |
parent | b5077b293b945edfcd84b6911a2c1b9cb234a129 (diff) |
restore the 'initialization of warn'
Change-Id: I72ed0955bf6d47e04be7c182994ba12e53e40a9a
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index ed3a4a1953f4..2630af3b8537 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: |