mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:54:41 +08:00
print Building message only when subdir != . AND verbose
This commit is contained in:
parent
d5e885834b
commit
3b6f914fb4
@ -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.
|
||||
|
||||
|
5
configure
vendored
5
configure
vendored
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user