diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-07 23:37:21 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-07 23:37:21 (GMT) |
commit | 6ab96eaf7abd5a50dcc90937238ab5da26236d70 (patch) | |
tree | 58229ff5c48472237cf50db32faf226786995287 /pablo | |
parent | 30e5df679c46bfeb5c9e6e0147f6dafae970df71 (diff) | |
download | hdf5-6ab96eaf7abd5a50dcc90937238ab5da26236d70.zip hdf5-6ab96eaf7abd5a50dcc90937238ab5da26236d70.tar.gz hdf5-6ab96eaf7abd5a50dcc90937238ab5da26236d70.tar.bz2 |
[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
Diffstat (limited to 'pablo')
-rw-r--r-- | pablo/Makefile.in | 4 |
1 files 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 $< |