summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-07 03:44:23 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-07 03:44:23 +0000
commit15a64d7404a162bdc265443b5a56adea6efe46e4 (patch)
tree6f4bbeaf3b7f66628580ea453684f03bede6eef1 /bin
parentdea05fff45119e41a5aeed77d1225f22c4a8da6a (diff)
downloadATCD-15a64d7404a162bdc265443b5a56adea6efe46e4.tar.gz
ChangeLogTag: Wed Mar 6 21:42:37 2002 Krishnakumar B <kitty@cs.wustl.edu>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ace-install6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ace-install b/bin/ace-install
index 36d97bbead7..52a566cb8ba 100755
--- a/bin/ace-install
+++ b/bin/ace-install
@@ -428,7 +428,7 @@ if [ $install -ne 0 ]; then
find tao -type f -name "*.idl" -print | cpio -p -d -V $TAO_DIR/include
find tao -type f -name "*.pidl" -print | cpio -p -d -V $TAO_DIR/include
find tao -type f -name "*.h" -print | grep -v "^config\.h" | cpio -p -d -V $TAO_DIR/include
- find tao -type f -name "*.i" -print | cpio -p -d -V $TAO_DIR/include
+ find tao -type f -name "*.i" -o -name "*.inl" -print | cpio -p -d -V $TAO_DIR/include
find tao -type f -name "*.cpp" -print | cpio -p -d -V $TAO_DIR/include
# NOTE: may need all .h, .i and .cpp under TAO/orbsvcs, instead of just TAO/orbsvcs/orbsvcs
@@ -436,7 +436,7 @@ if [ $install -ne 0 ]; then
find orbsvcs -type f -name "*.idl" -print | cpio -p -d -V $TAO_DIR/include
find orbsvcs -type f -name "*.pidl" -print | cpio -p -d -V $TAO_DIR/include
find orbsvcs -type f -name "*.h" -print | grep -v "^config\.h" | cpio -p -d -V $TAO_DIR/include
- find orbsvcs -type f -name "*.i" -print | cpio -p -d -V $TAO_DIR/include
+ find orbsvcs -type f -name "*.i" -o -name "*.inl" -print | cpio -p -d -V $TAO_DIR/include
find orbsvcs -type f -name "*.cpp" -print | cpio -p -d -V $TAO_DIR/include
cd ..
@@ -467,7 +467,7 @@ if [ $install -ne 0 ]; then
# copy ACE includes
echo "Copying include files..."
find ace -type f -name "*.h" -print | grep -v "^config\.h" | cpio -p -d -V $ACE_DIR/include
- find ace -type f -name "*.i" -print | cpio -p -d -V $ACE_DIR/include
+ find ace -type f -name "*.i" -o -name "*.inl" -print | cpio -p -d -V $ACE_DIR/include
find ace -type f -name "*.cpp" -print | cpio -p -d -V $ACE_DIR/include
cp ace/config.h $ACE_DIR/$ACE_ARCH/include/ace/config.h && rm $ACE_DIR/include/ace/config.h