- fuer fehlende Dateien werden nun "nur noch" symbolische Links erzeugt.

This commit is contained in:
Alexander Barton 2001-12-12 01:58:17 +00:00
parent b61b8c4dc6
commit cdb247c666
1 changed files with 8 additions and 5 deletions

View File

@ -1,19 +1,22 @@
#!/bin/sh #!/bin/sh
# #
# $Id: autogen.sh,v 1.1 2001/12/11 21:53:04 alex Exp $ # $Id: autogen.sh,v 1.2 2001/12/12 01:58:17 alex Exp $
# #
# $Log: autogen.sh,v $ # $Log: autogen.sh,v $
# Revision 1.1 2001/12/11 21:53:04 alex # Revision 1.2 2001/12/12 01:58:17 alex
# Initial revision # - fuer fehlende Dateien werden nun "nur noch" symbolische Links erzeugt.
#
# Revision 1.1.1.1 2001/12/11 21:53:04 alex
# Imported sources to CVS.
# #
if [ -f configure ]; then if [ -f configure ]; then
echo "autogen.sh: configure-Skript existiert bereits!" echo "autogen.sh: configure-Skript existiert bereits ..."
fi fi
aclocal && \ aclocal && \
autoheader && \ autoheader && \
automake --add-missing --copy && \ automake --add-missing && \
autoconf && \ autoconf && \
echo "Okay, autogen.sh war erfolgreich." echo "Okay, autogen.sh war erfolgreich."