summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-12-07 21:43:02 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-12-07 21:43:02 (GMT)
commit0d855a875e15d37a9a7dfc75479f0c776e827920 (patch)
treec551208859765f5a39b9c55c4d1087b098258178 /c++
parent82c9848b2d25067f7bc2070ac73fc8a7a4935bbf (diff)
downloadhdf5-0d855a875e15d37a9a7dfc75479f0c776e827920.zip
hdf5-0d855a875e15d37a9a7dfc75479f0c776e827920.tar.gz
hdf5-0d855a875e15d37a9a7dfc75479f0c776e827920.tar.bz2
[svn-r3095] Purpose:
Fix again Description: Needed to change the .C to .cpp in this depend module.
Diffstat (limited to 'c++')
-rw-r--r--c++/config/depend1.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/config/depend1.in b/c++/config/depend1.in
index 5dd25d8..fcd7f90 100644
--- a/c++/config/depend1.in
+++ b/c++/config/depend1.in
@@ -35,9 +35,9 @@ $(srcdir)/Dependencies: .depend
@for dep in $? dummy; do \
if [ $$dep != "dummy" ]; then \
case "$$dep" in \
- *.C) \
+ *.cpp) \
echo Building dependencies for $$dep; \
- obj=`basename $$dep .C`.lo; \
+ obj=`basename $$dep .cpp`.lo; \
sed '\%^'"$$obj"':%,\%[^\\]$$%d' <$@ >$@- && mv $@- $@; \
$(TRACE) $$dep; \
$(CC) -M -MG $(CPPFLAGS) $$dep 2>/dev/null | \