diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2006-09-22 14:46:05 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2006-09-22 14:46:05 +0000 |
commit | ce7dc49d9f26597c757de43ea96f57629b2d3c48 (patch) | |
tree | 90ca5bd052f1a33cf2e79e25f834a76d03f6f38f | |
parent | 46bc99acf862debdf2271177f3d55815f1191e51 (diff) | |
download | irssi-ce7dc49d9f26597c757de43ea96f57629b2d3c48.zip |
Simplify.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4378 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a8d503e9..f65057ef 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_INIT(src) # we don't want VERSION in our config.h -if test -n "`grep '^#undef VERSION' $srcdir/config.h.in`"; then +if grep '^#undef VERSION' $srcdir/config.h.in >/dev/null; then grep -v '^#undef VERSION' $srcdir/config.h.in > config.h.in.temp mv -f config.h.in.temp $srcdir/config.h.in fi |