*** empty log message ***

This commit is contained in:
hyung-hwan 2007-03-22 04:01:14 +00:00
parent bd1500acd9
commit 1627129a1f
2 changed files with 5 additions and 0 deletions

View File

@ -57,6 +57,9 @@ finalize ()
cp -f "$full" "$SOURCE_ROOT/html/$i"
cp -f "$full" "$ASETGT/$i"
;;
*.dsp|*.dsw)
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
;;
*)
cp -f "$full" "$target/$file"
;;

2
ase/rel/unix2dos.awk Normal file
View File

@ -0,0 +1,2 @@
BEGIN { ORS="\r\n"; }
{ print $0; }