diff options
author | Dan Wells <dwells@cs.uiuc.edu> | 2002-04-22 18:14:00 (GMT) |
---|---|---|
committer | Dan Wells <dwells@cs.uiuc.edu> | 2002-04-22 18:14:00 (GMT) |
commit | b60521774f32a8ce04189e2176f162e7e9608f23 (patch) | |
tree | 4d396f2381c011674c4581053f9cf30bee46be4c /pablo/Makefile.in | |
parent | e5fc40662c6520edc50c7e68c96e24eb766972f2 (diff) | |
download | hdf5-b60521774f32a8ce04189e2176f162e7e9608f23.zip hdf5-b60521774f32a8ce04189e2176f162e7e9608f23.tar.gz hdf5-b60521774f32a8ce04189e2176f162e7e9608f23.tar.bz2 |
[svn-r5220]
Purpose:
Bug Fix
Description:
Users could not trace MPI programs when library wasn't compiled for
parallel execution
Solution:
Allow Pablo Trace library to set the processor number and generate
the filenames for each processor.
Platforms tested:
Sun Workstation, HP VClass, Irix 64
Diffstat (limited to 'pablo/Makefile.in')
-rw-r--r-- | pablo/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pablo/Makefile.in b/pablo/Makefile.in index d4cc451..5b7c9ea 100644 --- a/pablo/Makefile.in +++ b/pablo/Makefile.in @@ -164,7 +164,7 @@ PABLO_CLEAN=HDFentryNames.h HDFidList.h ProcMasks.h HDFentries.txt \ HDFentries.txt: $(top_srcdir)/src/*.c grep "FUNC_ENTER[_INIT ]*(" $(top_srcdir)/src/*.c | \ - sed "s/.*FUNC_ENTER[_INIT ]*(//;s/[,)].*//" | sort -u > $@ + sed "s/.*FUNC_ENTER[_INIT ]*( *//;s/[,)].*//" | sort -u > $@ HDFentryNames.h: HDFentries.txt sed "s/.*/\"&\",/" $? > $@ |