]> arthur.barton.de Git - ngircd-alex.git/commitdiff
platformtest.sh: don't use "test -e", it isn't portable
authorAlexander Barton <alex@barton.de>
Sat, 4 Jan 2014 23:48:31 +0000 (00:48 +0100)
committerAlexander Barton <alex@barton.de>
Sat, 4 Jan 2014 23:50:11 +0000 (00:50 +0100)
contrib/platformtest.sh

index 6a1dc7134f8a1175ec67541c62a5b81135420126..76f4169c70843ffb0ba88b5effe94101bd949545 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
 # ngIRCd -- The Next Generation IRC Daemon
 #!/bin/sh
 #
 # ngIRCd -- The Next Generation IRC Daemon
-# Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors
+# Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -65,7 +65,7 @@ if [ -d .git ]; then
 fi
 
 echo "$NAME: Checking for \"./configure\" script ..."
 fi
 
 echo "$NAME: Checking for \"./configure\" script ..."
-if [ ! -e ./configure ]; then
+if [ ! -r ./configure ]; then
        echo "$NAME: Running \"./autogen.sh\" ..."
        [ -n "$VERBOSE" ] && ./autogen.sh || ./autogen.sh >/dev/null
 fi
        echo "$NAME: Running \"./autogen.sh\" ..."
        [ -n "$VERBOSE" ] && ./autogen.sh || ./autogen.sh >/dev/null
 fi