summaryrefslogtreecommitdiff
path: root/bin/Hash_Map_Manager_Helper
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-30 03:37:53 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-30 03:37:53 +0000
commitb8f528063c3b007eb89347dad60cf05604e7b903 (patch)
tree8e255f81d6cd7b0ac9e54c9c9f46806ff65f0c1e /bin/Hash_Map_Manager_Helper
parentb6096e014014be1257336ff7e57105bfce9f502b (diff)
downloadATCD-b8f528063c3b007eb89347dad60cf05604e7b903.tar.gz
translated/renamed Hash_Map_Manager_Helper.csh from csh to sh
Diffstat (limited to 'bin/Hash_Map_Manager_Helper')
-rwxr-xr-xbin/Hash_Map_Manager_Helper7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/Hash_Map_Manager_Helper b/bin/Hash_Map_Manager_Helper
index 99c085348e9..f65cd584684 100755
--- a/bin/Hash_Map_Manager_Helper
+++ b/bin/Hash_Map_Manager_Helper
@@ -1,4 +1,4 @@
-#! /bin/csh -f
+#! /bin/sh
#
# $Id$
@@ -68,8 +68,9 @@
# are using the template instantiation provided in ACE for ACE_Hash
# and ACE_Equal_To, don't instantiate those templates.
-foreach file ( `find . -type f \( -name "*.i" -o -name "*.h" -o -name "*.cpp" \) -print | xargs egrep -l "template[ \t]*class[ \t]*ACE_Hash_Map_Manager"` )
+for file in `find . -type f \( -name "*.i" -o -name "*.h" -o -name "*.cpp" \) -print | xargs egrep -l "template[ \t]*class[ \t]*ACE_Hash_Map_Manager"`
+do
echo Fixing template instantiations in $file
perl $ACE_ROOT/bin/Hash_Map_Manager.pl $file > $file.new
mv $file.new $file
-end
+done