| wiki3721: Gfx_no_gcc_cygwin (Version 1) |
# Make sure that tools/appbuilder doesn't build for gcc_cygwin
TMPFILE=${TMP:-/tmp}/abplatform.$$
ABFILES="$(find tools/appbuilder -name abplatform -print) $(find tools/appbuilder -name Makefile -print)"
for ABFILE in $ABFILES; do
sed -e 's!gcc_cygwin!!g' <$ABFILE >$TMPFILE
mv $TMPFILE $ABFILE;
done
# We do not build this on nto
touch apps/phindows/Makefile.dnm
|