summaryrefslogtreecommitdiffstats
path: root/pablo
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-04-10 16:15:07 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-04-10 16:15:07 (GMT)
commit055bff2ecc8b0ac3fc545a355c4ca714a1537a30 (patch)
tree82996cf302867592a1eb88cbe74c95bc28d29979 /pablo
parentecb429689012691c304377dee3060cdd148f0d4c (diff)
downloadhdf5-055bff2ecc8b0ac3fc545a355c4ca714a1537a30.zip
hdf5-055bff2ecc8b0ac3fc545a355c4ca714a1537a30.tar.gz
hdf5-055bff2ecc8b0ac3fc545a355c4ca714a1537a30.tar.bz2
[svn-r5161] Purpose:
Bug Fix Fix Description: The way I fixed the bug didn't work on Linux. Solution: Changed so that we use the $* macro with a .c extension instead of assuming that $< won't have a full pathname already. Platforms tested: Linux
Diffstat (limited to 'pablo')
-rw-r--r--pablo/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/pablo/Makefile.in b/pablo/Makefile.in
index b8d1d4e..307fc2b 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 $(top_srcdir)/src/$< -o $*.o
+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $(top_srcdir)/src/$*.c -o $*.o
cp $*.o $@
# 'vpath' directive is only supported in gmake, take out - QAK