gambas-source-code/reconf-all
Benoît Minisini ba19f3c1dd * Copy https://gambas.svn.sourceforge.net/svnroot/gambas/2.0 to https://gambas.svn.sourceforge.net/svnroot/gambas/gambas
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2007-12-30 16:41:49 +00:00

19 lines
495 B
Bash
Executable file

#!/bin/sh
for i in main app comp examples help gb.*; do echo $i; (cd $i; ./reconf); done
./reconf
#~/gambas/2.0/tool/MakeComponentLink/MakeComponentLink.gambas
#DASH=`which dash`
#SED=`which sed`
#if test -f configure && test -n "$DASH" && test -n "$SED"; then
# for i in configure */configure */*/configure; do
# if test -f $i; then
# echo "Setting shell to $DASH in $i"
# $SED "s:#! /bin/sh:#!$DASH:g" $i > $i.tmp && mv -f $i.tmp $i;
# chmod a+x $i;
# fi
# done
#fi