aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/mlib.adb
diff options
context:
space:
mode:
authorVincent Celier <celier@adacore.com>2007-04-06 11:24:28 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2007-04-06 11:24:28 +0200
commit0780eccc5da4e9c0f4e8492fab37e13459da6476 (patch)
tree563a614cf2fe714c51cbba326b304bb16359a781 /gcc/ada/mlib.adb
parent0916df6a3e3a63c275b1b88b6298bcdd97e9b2d4 (diff)
downloadgcc-0780eccc5da4e9c0f4e8492fab37e13459da6476.zip
gcc-0780eccc5da4e9c0f4e8492fab37e13459da6476.tar.gz
gcc-0780eccc5da4e9c0f4e8492fab37e13459da6476.tar.bz2
mlib.adb (Building_Library): Only output "building a library..." in verbose mode
2007-04-06 Vincent Celier <celier@adacore.com> * mlib.adb (Building_Library): Only output "building a library..." in verbose mode * mlib-prj.adb (Build_Library): Only output lists of object and ALI files in verbose mode. * mlib-utl.adb (Ar): Only output the first object files when not in verbose mode. (Gcc): Do not display all the object files if not in verbose mode, only the first one. From-SVN: r123585
Diffstat (limited to 'gcc/ada/mlib.adb')
-rw-r--r--gcc/ada/mlib.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/mlib.adb b/gcc/ada/mlib.adb
index 549578a..def15c2 100644
--- a/gcc/ada/mlib.adb
+++ b/gcc/ada/mlib.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1999-2005, AdaCore --
+-- Copyright (C) 1999-2006, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -53,7 +53,7 @@ package body MLib is
pragma Warnings (Off, Afiles);
begin
- if not Opt.Quiet_Output then
+ if Opt.Verbose_Mode and not Opt.Quiet_Output then
Write_Line ("building a library...");
Write_Str (" make ");
Write_Line (Output_File);