diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-25 06:24:18 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-03-25 06:24:18 +0000 |
commit | ad75aac62374e74a9829dc2f43939f4f8148a0f4 (patch) | |
tree | b85aefc753c742248d29a6bcdf17263f20ba212d | |
parent | c114e8713539e85389db444b3938119fae05afec (diff) |
Fixed a little bug that would come back to bite us when gcc3.5 comes out...
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@904 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -427,7 +427,7 @@ echo "/* Auto generated by configure, do not modify! */" >include/inspircd_confi echo "" >>include/inspircd_config.h if [ "$GCCVER" -eq "3" ] ; then echo "#define GCC3" >>include/inspircd_config.h - if [ "$GCC34" -eq "4" ] ; then + if [ "$GCC34" -gt "3" ] ; then echo "#define GCC34" >>include/inspircd_config.h fi fi |