8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:43:03 +01:00

Fix the permissions on the configure script, just in case it is needed (like on Darwin)

This commit is contained in:
bellardo 2003-04-17 18:41:28 +00:00
parent c2176de5bb
commit 12e560291d

View File

@ -2,7 +2,7 @@
#
# Run this to generate all the initial makefiles, etc.
#
# $Id: autogen.sh,v 1.7 2003-03-13 06:50:04 eku Exp $
# $Id: autogen.sh,v 1.8 2003-04-17 18:41:28 bellardo Exp $
PKG_NAME=Firebird2
SRCDIR=`dirname $0`
@ -64,6 +64,7 @@ autoconf || exit 1
if test "x$NOCONFIGURE" = "x"; then
echo Running $SRCDIR/configure $conf_flags "$@" ...
rm -f config.cache config.log
chmod a+x $SRCDIR/configure
$SRCDIR/configure $conf_flags "$@" \
&& echo Now type \`make\' to compile $PKG_NAME
else