ba19f3c1dd
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
19 lines
495 B
Bash
Executable file
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
|