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
for d in freebsd*/*/Makefile.am \
cygwin*/*/Makefile.am \
mingw*/*/Makefile.am \
solaris*/*/Makefile.am; \
mingw*/*/Makefile.am; \
do
o=`echo $d | sed -e 's,/.*,,'`
a=`echo $d | sed -e 's,/Makefile\.am,,;s,.*/,,'`
targets="$targets $a-pc-$o"
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
;;
esac