summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-03-02 23:33:21 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-03-02 23:33:21 +0000
commit8d571e3280cbbc110711562b2e80e0da648b40a8 (patch)
treec60e942c2f6ea2c64b5969e1fd20ea0ec8d1ca39 /bin
parent41cd917a30b984b00a5fadd1dc7542ad3deda71a (diff)
downloadATCD-8d571e3280cbbc110711562b2e80e0da648b40a8.tar.gz
ChangeLogTag:Tue Mar 2 23:26:28 UTC 2004 Don Hinton <dhinton@dre.vanderbilt.edu>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/g++dep8
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/g++dep b/bin/g++dep
index 15dceb41eef..f545be99162 100755
--- a/bin/g++dep
+++ b/bin/g++dep
@@ -80,7 +80,7 @@ cat << _EOF_ >> $TMP
_EOF_
-g++ -MM -DACE_LACKS_PRAGMA_ONCE $* | \
+g++ -MM -MG -DACE_LACKS_PRAGMA_ONCE $* | \
sed -e "s; \./; ;g" $SED $REL | \
awk '{ if ($1 != prev) \
{ if (rec != "") print rec; rec = $0; prev = $1; } \
@@ -98,7 +98,11 @@ then
cat $TMP | \
sed \
-e "s/${ACE_PLATFORM_CONFIG}/\$(ACE_PLATFORM_CONFIG)/g" \
- -e '/config[-][^a][^l][^l]*\.h/d' \
+ -e 's/config-all/configx-all/' \
+ -e 's/config-lite/configx-lite/' \
+ -e '/config-.*\.h/d' \
+ -e 's/configx-all/config-all/' \
+ -e 's/configx-lite/config-lite/' \
-e "s; /[-a-zA-Z0-9_./+]*\.h;;g" \
-e 's/\\[ \t][ \t]*\\/\\/g' \
-f $SCRIPT > $TMP2