summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-14 22:43:01 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-14 22:43:01 +0000
commit1d59509c9aa0ffa1ef9642acd7d7f9b64e175c20 (patch)
tree59dd2f919f161644d3d52ea31b6136b3955ec2fe /bin
parent88f4407742c4c881dee7b635748060a8e1210097 (diff)
downloadATCD-1d59509c9aa0ffa1ef9642acd7d7f9b64e175c20.tar.gz
ChangeLogTag:Mon Jan 14 14:40:25 2002 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/g++dep5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/g++dep b/bin/g++dep
index 24bd2190f42..cfd00b95e9e 100755
--- a/bin/g++dep
+++ b/bin/g++dep
@@ -87,13 +87,14 @@ g++ -MM -DACE_LACKS_PRAGMA_ONCE $* | \
if [ $DO_ACE_MAKE_DEPEND -eq 1 ]
then
SCRIPT=${TMP}_script
- echo "s;\([-a-zA-Z0-9._]*\)\.o:;\\" > $SCRIPT
+ echo "s;\([-a-zA-Z0-9._+]*\)\.o:;\\" > $SCRIPT
echo ".obj/\1.o .obj/\1.${SOEXT} ${VSHDIR}\1.o ${VSHDIR}\1.${SOEXT}:;" >> $SCRIPT
TMP2=${TMP}_2
cat $TMP | \
sed \
-e '/$(ACE_ROOT)\/ace\/config[^\.]*\.h/d' \
- -e "s; /[-a-zA-Z0-9_./]*\.h;;g" \
+ -e "s; /[-a-zA-Z0-9_./+]*\.h;;g" \
+ -e 's/\\[ \t][ \t]*\\/\\/g' \
-f $SCRIPT > $TMP2
mv $TMP2 $TMP
rm -f $TMP2