Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
svn path=/trunk/boinc/; revision=1669
  • Loading branch information
Karl Chen committed Jul 11, 2003
1 parent 0b423a0 commit 510e374
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
19 changes: 12 additions & 7 deletions _autosetup
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@ echo "Bootstrapping configure script and makefiles:"

aclocal && automake && autoconf && autoheader

## We don't just run ./configure ourselves here, because the user may not want
## to run it, or may want to run with custom parameters.

echo "Done, now run ./configure"
echo " ./configure -C to enable caching"
echo " ./configure --enable-maintainer-mode to enable maintainer depedencies"

## We don't always run ./configure ourselves here, because the user may not
## want to run it, or may want to run with custom parameters.

if [ "$1" = "-a" ]; then
./configure --enable-maintainer-mode
elif [ "$1" = "-c" ]; then
./configure
else
echo "Done, now run ./configure"
echo " ./configure -C to enable caching"
echo " ./configure --enable-maintainer-mode to enable maintainer depedencies"
fi
1 change: 0 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,5 @@ AC_CONFIG_FILES([RSAEuro/source/Makefile
])

AC_CONFIG_HEADER([config.h])
AC_CONFIG_HEADER([client/win/win_config.h])

AC_OUTPUT

0 comments on commit 510e374

Please sign in to comment.