diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-08-02 17:33:49 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-08-02 17:33:49 (GMT) |
commit | 7def00050fd07e93bee65e2e8ad2fac0001cc05e (patch) | |
tree | 5125db772901a74d75977080e88e131c6ad74a23 /Makefile.am | |
parent | 9f07929a0748a7901237b65922d6e299bdce6e50 (diff) | |
download | hdf5-7def00050fd07e93bee65e2e8ad2fac0001cc05e.zip hdf5-7def00050fd07e93bee65e2e8ad2fac0001cc05e.tar.gz hdf5-7def00050fd07e93bee65e2e8ad2fac0001cc05e.tar.bz2 |
[svn-r11184]
Purpose:
Bug fix
Description:
Fixed a Makefile bug that would cause make clean to fail on some platforms
when C++ is enabled.
Platforms tested:
sleipnir, mir
Misc. update:
Diffstat (limited to 'Makefile.am')
-rwxr-xr-x | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 0e3fea4..03a6dca 100755 --- a/Makefile.am +++ b/Makefile.am @@ -121,7 +121,7 @@ mostlyclean-local: (cd $$d && $(MAKE) $(AM_MAKEFLAGS) mostlyclean) || exit 1; \ fi; \ done; \ - @if test -d ii_files; then \ + if test -d ii_files; then \ $(RM) -rf ii_files; \ fi |