diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-09-19 16:33:36 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-09-19 16:33:36 (GMT) |
commit | 055daa52f0fe51423880551cd21b4b8c8d945130 (patch) | |
tree | 5c5f0cf37d9bd8365044b5061233688a6028a0c7 /config | |
parent | d06e2e8eb468be3263e3dbd054198e2c21b62a77 (diff) | |
download | hdf5-055daa52f0fe51423880551cd21b4b8c8d945130.zip hdf5-055daa52f0fe51423880551cd21b4b8c8d945130.tar.gz hdf5-055daa52f0fe51423880551cd21b4b8c8d945130.tar.bz2 |
[svn-r99] Fixed backslashes
Diffstat (limited to 'config')
-rw-r--r-- | config/depend.in | 2 |
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; \ |