Fix setting up targets for solaris*

This commit is contained in:
Ralf Corsepius
2006-07-18 07:25:19 +00:00
parent 4557d3cdd6
commit 22f187d03a

View File

@@ -42,13 +42,18 @@ all )
done done
for d in freebsd*/*/Makefile.am \ for d in freebsd*/*/Makefile.am \
cygwin*/*/Makefile.am \ cygwin*/*/Makefile.am \
mingw*/*/Makefile.am \ mingw*/*/Makefile.am; \
solaris*/*/Makefile.am; \
do do
o=`echo $d | sed -e 's,/.*,,'` o=`echo $d | sed -e 's,/.*,,'`
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'` a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
targets="$targets $a-pc-$o" targets="$targets $a-pc-$o"
done done
for d in solaris*/*/Makefile.am; \
do
o=`echo $d | sed -e 's,/.*,,'`
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
targets="$targets $a-sun-$o"
done
cd $savdir cd $savdir
;; ;;
esac esac