From 6ab96eaf7abd5a50dcc90937238ab5da26236d70 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 7 Mar 2002 18:37:21 -0500 Subject: [svn-r5048] Purpose: Bug Fixes Description: Fixed some bugs. The CPPFLAGS wasn't being included into the Makefile. Also, there's a sed script which needed to be pointed to with the $(top_srcdir) macro. Solution: Added @CPPFLAGS@ to the CPPFLAGS line and put $(top_srcdir)/ before the sed script file's name. Platforms tested: Linux --- pablo/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pablo/Makefile.in b/pablo/Makefile.in index 8b2b596..5e1fbab 100644 --- a/pablo/Makefile.in +++ b/pablo/Makefile.in @@ -23,7 +23,7 @@ PABLO_MPIO_FLAGS=${PARALLEL_PABLO:yes=-DH5_HAVE_PARALLEL -DH5_HAVE_MPIOTRACE} PABLO_FLAGS=-I$(top_srcdir)/src -DH5_HAVE_PABLO $(PABLO_MPIO_FLAGS) CPPFLAGS=-I. -I$(top_srcdir)/src -DH5_DEBUG_API -DNDEBUG $(PABLO_FLAGS) \ - -D$(PABLO_BLD)_BUILD + -D$(PABLO_BLD)_BUILD @CPPFLAGS@ ## This is our main target: LIB=libhdf5-inst.a @@ -175,7 +175,7 @@ ProcMasks.h: $(top_srcdir)/src/*.c ProcIDs.h: HDFidList.h ProcMasks.h ProcTrace.inc: HDFidList.h - sed "=" $? | sed -f PabloSedscr > $@ + sed "=" $? | sed -f $(top_srcdir)/PabloSedscr > $@ PabloHDF.o: PabloHDF.c $(PABLO_INCLUDES) $(CC) -g $(CFLAGS) $(CPPFLAGS) $(PABLO_FLAGS) -c $< -- cgit v0.12