diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-02-19 19:04:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-02-19 19:04:32 (GMT) |
commit | 241abf49318ff3946ac9a96bde74efcec4c2332f (patch) | |
tree | c438b8c8ac6cd21cc3917d9afa02e93a213948d5 /config/linux-gnulibc1 | |
parent | 657d7c759687abed9b16ae70db51a4de0a26b92e (diff) | |
download | hdf5-241abf49318ff3946ac9a96bde74efcec4c2332f.zip hdf5-241abf49318ff3946ac9a96bde74efcec4c2332f.tar.gz hdf5-241abf49318ff3946ac9a96bde74efcec4c2332f.tar.bz2 |
[svn-r3452] Purpose:
Fix
Description:
The "make *clean" options weren't recursing through the
subdirectories (if they exist).
Solution:
Force it to recurse through the subdirectories listed in SUBDIRS
Platforms tested:
Linux
Diffstat (limited to 'config/linux-gnulibc1')
-rw-r--r-- | config/linux-gnulibc1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/linux-gnulibc1 b/config/linux-gnulibc1 index e22b82d..3659eb3 100644 --- a/config/linux-gnulibc1 +++ b/config/linux-gnulibc1 @@ -7,9 +7,9 @@ # See BlankForm in this directory for details. # The default compiler is `gcc'. -if test "X-" = "X-$CC"; then - CC=gcc - CC_BASENAME=gcc +if test -z "$CC"; then + CC=gcc + CC_BASENAME=gcc fi # Omit frame pointer for optimized code? |