From 1627129a1f663e39c4847e6fe08229e8d43401c2 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Thu, 22 Mar 2007 04:01:14 +0000 Subject: [PATCH] *** empty log message *** --- ase/rel/rel.sh | 3 +++ ase/rel/unix2dos.awk | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 ase/rel/unix2dos.awk diff --git a/ase/rel/rel.sh b/ase/rel/rel.sh index e853a252..91e3da22 100755 --- a/ase/rel/rel.sh +++ b/ase/rel/rel.sh @@ -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" ;; diff --git a/ase/rel/unix2dos.awk b/ase/rel/unix2dos.awk new file mode 100644 index 00000000..b8a6e3ef --- /dev/null +++ b/ase/rel/unix2dos.awk @@ -0,0 +1,2 @@ +BEGIN { ORS="\r\n"; } +{ print $0; }