diff --git a/ase/rel/rel.sh b/ase/rel/rel.sh index 91e3da22..1a7ba2cb 100755 --- a/ase/rel/rel.sh +++ b/ase/rel/rel.sh @@ -61,7 +61,12 @@ finalize () "$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" ;; *) - cp -f "$full" "$target/$file" + if [ "$dir" = "test/com" ] + then + "$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" + else + cp -f "$full" "$target/$file" + fi ;; esac fi diff --git a/ase/test/com/AwkForm.frx b/ase/test/com/AwkForm.frx new file mode 100644 index 00000000..9dd42b07 Binary files /dev/null and b/ase/test/com/AwkForm.frx differ