diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-27 20:03:54 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-27 20:03:54 (GMT) |
commit | 6b23bf89240eeb24f24411f2af96d8c9e19e1e1c (patch) | |
tree | 70fea80f1ac3f15191e5261b3db13351bd545d4a /fortran/config/linux-gnulibc1 | |
parent | c51f3f69f74fc1ff6932e588db5cea2c45d2838b (diff) | |
download | hdf5-6b23bf89240eeb24f24411f2af96d8c9e19e1e1c.zip hdf5-6b23bf89240eeb24f24411f2af96d8c9e19e1e1c.tar.gz hdf5-6b23bf89240eeb24f24411f2af96d8c9e19e1e1c.tar.bz2 |
[svn-r3864] Purpose:
Bug Fix
Description:
The "-$(RM)" flags were causing error messages when doing a make
distclean.
Solution:
Removed the "-" from the beginning.
Platforms tested:
Linux
Diffstat (limited to 'fortran/config/linux-gnulibc1')
-rw-r--r-- | fortran/config/linux-gnulibc1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fortran/config/linux-gnulibc1 b/fortran/config/linux-gnulibc1 index 6765b0b..b24bb85 100644 --- a/fortran/config/linux-gnulibc1 +++ b/fortran/config/linux-gnulibc1 @@ -7,7 +7,7 @@ # See BlankForm in this directory for details. # The default compiler is `gcc'. -if test "X-" = "X-$CC"; then +if test -z "$CC"; then CC=gcc CC_BASENAME=gcc fi @@ -36,11 +36,11 @@ HID_T='SELECTED_INT_KIND(R_INTEGER)' SIZE_T='SELECTED_INT_KIND(R_INTEGER)' OBJECT_NAMELEN_DEFAULT_F=-1 -if test "X-" = "X-$F9X"; then +if test -z "$F9X"; then F9X=pgf90 fi -if test "X-" = "X-$f9x_flags_set"; then +if test -z "$f9x_flags_set"; then FFLAGS= DEBUG_FFLAGS= PROD_FFLAGS= |