diff options
author | K. Richard Pixley <rich@cygnus> | 1992-05-08 19:34:32 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-05-08 19:34:32 +0000 |
commit | 3b6f914fb438e8c25db2c35d6f5cb2eaed85cffb (patch) | |
tree | 168bad82b5a22670c182a77ddc69c6f0ac41831a | |
parent | d5e885834bfcf5998f2cd8daca780ee82ae9827e (diff) | |
download | binutils-gdb-3b6f914fb438e8c25db2c35d6f5cb2eaed85cffb.tar.gz |
print Building message only when subdir != . AND verbose
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | configure | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 606ecd77ead..92e62085948 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com) + * configure: print the "Building in" message only when building in + other than "." AND verbose. + * configure: remove -s, rework -v to better accomodate guested configures. diff --git a/configure b/configure index 8564b762af5..aa9acf95d18 100755 --- a/configure +++ b/configure @@ -493,7 +493,10 @@ for subdir in . ${subdirs} ; do case "${removing}" in "") - echo Building in ${subdir} + case "${subdir}" in + .) ;; + *) eval echo Building in ${subdir} ${redirect} ;; + esac # FIXME Should this be done recursively ??? (Useful for e.g. gdbtest) # Set up the list of links to be made. |