diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-08-02 16:11:35 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-08-02 16:11:35 (GMT) |
commit | 9f07929a0748a7901237b65922d6e299bdce6e50 (patch) | |
tree | 29bfacb17b227b6bcf54ecab681d7876e4433d1d /fortran/src | |
parent | a4ede54bbd1a45021f93bc409b2dd81ec1b32a01 (diff) | |
download | hdf5-9f07929a0748a7901237b65922d6e299bdce6e50.zip hdf5-9f07929a0748a7901237b65922d6e299bdce6e50.tar.gz hdf5-9f07929a0748a7901237b65922d6e299bdce6e50.tar.bz2 |
[svn-r11183] Purpose:
Bug fix
Description:
Removed an extraneous @ from the fortran/src makefile.
Platforms tested:
mir (simple fix)
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/Makefile.am | 2 | ||||
-rw-r--r-- | fortran/src/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fortran/src/Makefile.am b/fortran/src/Makefile.am index 8b7a1f5..093ca5c 100644 --- a/fortran/src/Makefile.am +++ b/fortran/src/Makefile.am @@ -80,7 +80,7 @@ uninstall-local: set -x; $(RM) $(includedir)/*.$(F9XMODEXT); \ fi; \ fi; \ - @$(RM) $(bindir)/$(H5FC_NAME) + $(RM) $(bindir)/$(H5FC_NAME) # Also install and uninstall (uninstall-local above) h5fc script install-exec-local: diff --git a/fortran/src/Makefile.in b/fortran/src/Makefile.in index 9226e92..df3d66c 100644 --- a/fortran/src/Makefile.in +++ b/fortran/src/Makefile.in @@ -805,7 +805,7 @@ uninstall-local: set -x; $(RM) $(includedir)/*.$(F9XMODEXT); \ fi; \ fi; \ - @$(RM) $(bindir)/$(H5FC_NAME) + $(RM) $(bindir)/$(H5FC_NAME) # Also install and uninstall (uninstall-local above) h5fc script install-exec-local: |