aboutsummaryrefslogtreecommitdiffstats
path: root/erts/etc/win32
diff options
context:
space:
mode:
authorPatrik Nyblom <[email protected]>2011-05-02 15:49:50 +0200
committerPatrik Nyblom <[email protected]>2011-12-02 15:21:10 +0100
commit7f9e276476c4939cf3c79f6786abf0b714cee333 (patch)
tree2843b4f7d73a08f25afaed6dbb3f2334a5dd61fa /erts/etc/win32
parent7b3596ba1521f201c9416fc7a0385cb7e6c6f495 (diff)
downloadotp-7f9e276476c4939cf3c79f6786abf0b714cee333.tar.gz
otp-7f9e276476c4939cf3c79f6786abf0b714cee333.tar.bz2
otp-7f9e276476c4939cf3c79f6786abf0b714cee333.zip
Get working prompt in Win64 using bootstrap code
Diffstat (limited to 'erts/etc/win32')
-rw-r--r--erts/etc/win32/msys_tools/vc/cc.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/etc/win32/msys_tools/vc/cc.sh b/erts/etc/win32/msys_tools/vc/cc.sh
index d67c746eb8..6c1b20a003 100644
--- a/erts/etc/win32/msys_tools/vc/cc.sh
+++ b/erts/etc/win32/msys_tools/vc/cc.sh
@@ -257,7 +257,8 @@ for x in $SOURCES; do
if test `grep -v $x $MSG_FILE | grep -c '#line'` != "0"; then
o=`echo $x | sed 's,.*/,,' | sed 's,\.cp*$,.o,'`
echo -n $o':'
- cat $MSG_FILE | grep '#line' | grep -v $x | awk -F\" '{printf("%s\n",$2)}' | sort -u | grep -v " " | xargs -n 1 win2msys_path.sh | awk '{printf("\\\n %s ",$0)}'
+# cat $MSG_FILE | grep '#line' | grep -v $x | awk -F\" '{printf("%s\n",$2)}' | sort -u | grep -v " " | xargs -n 1 win2msys_path.sh | awk '{printf("\\\n %s ",$0)}'
+ cat $MSG_FILE | grep '#line' | grep -v $x | awk -F\" '{printf("%s\n",$2)}' | sort -u | grep -v " " | sed 's,^\([A-Za-z]\):[\\/]*,/\1/,;s,\\\\*,/,g'| awk '{printf("\\\n %s ",$0)}'
echo
echo
after_sed=`date '+%s'`