From 2f2f4c247250bcad320214b8d591f21bdf012477 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 12 Dec 2007 07:20:02 +0000 Subject: [PATCH] --- ase/rel/rel.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ase/rel/rel.sh b/ase/rel/rel.sh index ed26ed40..1b2c8b71 100755 --- a/ase/rel/rel.sh +++ b/ase/rel/rel.sh @@ -44,12 +44,12 @@ finalize () case "$i" in *.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in) - "$ASEAWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full" + "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/lic.awk" -a "$target/$file" "$full" ;; *.man) html=`echo $i | sed 's/.man$/.html/'` - "$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html" - "$ASEAWK" -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html" + "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html" + "$ASEAWK" -explicit -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html" cp -f "$full" "$target/$file" ;; *.css) @@ -58,10 +58,10 @@ finalize () cp -f "$full" "$ASETGT/$i" ;; *.dsp|*.dsw|*.sln|*.vcproj|*.csproj|*.bat|*.cmd) - "$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" + "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" ;; descrip.mms) - "$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" + "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" ;; *.frx) cp -f "$full" "$target/$file" @@ -69,7 +69,7 @@ finalize () *) if [ "$dir" = "test/com" ] then - "$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" + "$ASEAWK" -explicit -noimplicit -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file" else cp -f "$full" "$target/$file" fi