summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-04-10 15:06:44 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-04-10 15:06:44 (GMT)
commit0b26fa6c9f50083115054c3afde1ae21900361c6 (patch)
tree7fd714b6bb11cc8417840802a59efd1140ba6216
parentc1edc96aaa8e2c9b2c6440e4b7e852dbf73430bb (diff)
downloadhdf5-0b26fa6c9f50083115054c3afde1ae21900361c6.zip
hdf5-0b26fa6c9f50083115054c3afde1ae21900361c6.tar.gz
hdf5-0b26fa6c9f50083115054c3afde1ae21900361c6.tar.bz2
[svn-r5157] Purpose:
Bug Fix Description: We couldn't find the HDF5 source files for compilation with Pablo. Solution: Have it find them in the $(top_srcdir)/src/ directory. Platforms tested: Modi4
-rw-r--r--pablo/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/pablo/Makefile.in b/pablo/Makefile.in
index 91db581..b8d1d4e 100644
--- a/pablo/Makefile.in
+++ b/pablo/Makefile.in
@@ -58,7 +58,7 @@ LIB_COBJ=$(LIB_XOBJ:.x=.o)
LIB_OBJ=$(PABLO_OBJ) $(LIB_COBJ)
.c.x:
- $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $(top_srcdir)/src/$< -o $*.o
cp $*.o $@
# 'vpath' directive is only supported in gmake, take out - QAK