diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-02-18 22:31:05 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-02-18 22:31:05 (GMT) |
commit | 691fae29d48fdd1a39bfd73b0c55a0cc9571d767 (patch) | |
tree | 96f9ce7718ca17a68adc7e44285ac34324980a8b /src/Makefile.in | |
parent | 6f3c3be25663cd73cf656e7b7b02bb258e44d87e (diff) | |
download | hdf5-691fae29d48fdd1a39bfd73b0c55a0cc9571d767.zip hdf5-691fae29d48fdd1a39bfd73b0c55a0cc9571d767.tar.gz hdf5-691fae29d48fdd1a39bfd73b0c55a0cc9571d767.tar.bz2 |
[svn-r8212] Purpose:
Bug fix.
Description:
The -g in H5detect somehow does not work with 64bit mpicc in arabica.
Remove it for now for better solution.
Platforms tested:
no test as the change is trivia.
Misc. update:
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 257d52c..ab39296 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -95,8 +95,8 @@ H5Tinit.c: H5detect ## Use -g to force no optimization since many compilers (e.g., Intel) takes ## a long time to compile it with any optimization on. H5detect is used ## to generate H5Tinit.c once. So, optimization is not critical. -H5detect: H5detect.lo - $(CC) $(CFLAGS) $(CPPFLAGS) -g $(srcdir)/H5detect.c \ +H5detect: $(srcdir)/H5detect.c + $(CC) $(CFLAGS) $(CPPFLAGS) $(srcdir)/H5detect.c \ $(LDFLAGS) $(LIBS) -o $@ |