summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-09-19 16:33:36 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-09-19 16:33:36 (GMT)
commit055daa52f0fe51423880551cd21b4b8c8d945130 (patch)
tree5c5f0cf37d9bd8365044b5061233688a6028a0c7
parentd06e2e8eb468be3263e3dbd054198e2c21b62a77 (diff)
downloadhdf5-055daa52f0fe51423880551cd21b4b8c8d945130.zip
hdf5-055daa52f0fe51423880551cd21b4b8c8d945130.tar.gz
hdf5-055daa52f0fe51423880551cd21b4b8c8d945130.tar.bz2
[svn-r99] Fixed backslashes
-rw-r--r--config/depend.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/depend.in b/config/depend.in
index b18660d..46dac4e 100644
--- a/config/depend.in
+++ b/config/depend.in
@@ -26,7 +26,7 @@ dep depend: .depend
@for dep in $? dummy; do \
if [ $$dep != "dummy" ]; then \
echo Building dependencies for $$dep; \
- obj=`echo $$dep | sed 's/\.c/.o/'`; \
+ obj=`echo $$dep | sed 's/\.c/\\\\.o/'`; \
sed "/$$obj/,/[^\\]$$/d" <$@ >$@- && mv $@- $@; \
$(CC) -M -MG $(CPPFLAGS) $$dep >>$@; \
fi; \