diff options
author | Fred Fish <fnf@specifix.com> | 1991-10-24 09:00:51 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-10-24 09:00:51 +0000 |
commit | 67622ee16f19aa978b094fa94a3c93235f9088a2 (patch) | |
tree | e6ad1d4377e2877b11a1fd5772ea54cf0b209126 /config | |
parent | cb17dfb1c0dcf0ac153b00c0694d28b08c5ce9aa (diff) | |
download | gdb-67622ee16f19aa978b094fa94a3c93235f9088a2.zip gdb-67622ee16f19aa978b094fa94a3c93235f9088a2.tar.gz gdb-67622ee16f19aa978b094fa94a3c93235f9088a2.tar.bz2 |
For systems where RANLIB is defined as echo, send the output to /dev/null
to help reduce clutter in the output from doing a make.
Diffstat (limited to 'config')
-rw-r--r-- | config/mh-dgux | 2 | ||||
-rw-r--r-- | config/mh-sysv | 2 | ||||
-rw-r--r-- | config/mt-a29k | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/config/mh-dgux b/config/mh-dgux index 568f0c9..ce5db78 100644 --- a/config/mh-dgux +++ b/config/mh-dgux @@ -1,4 +1,4 @@ HDEFINES=-DHOST_SYS=DGUX_SYS CC=gcc -Wall -ansi -D__using_DGUX -RANLIB=echo +RANLIB=echo >/dev/null diff --git a/config/mh-sysv b/config/mh-sysv index 77e8c6a..f682838 100644 --- a/config/mh-sysv +++ b/config/mh-sysv @@ -1,3 +1,3 @@ # Define SYSV as -DSYSV if you are using a System V operating system. SYSV = -DSYSV -RANLIB = echo +RANLIB = echo >/dev/null diff --git a/config/mt-a29k b/config/mt-a29k index 4ca992b..fdaa41e 100644 --- a/config/mt-a29k +++ b/config/mt-a29k @@ -1,6 +1,6 @@ #AR = ar-a29k #AR_FLAGS = qs -#RANLIB = echo +#RANLIB = echo >/dev/null # This is a hack. By declaring subdirs using "SUBDIRS=" rather than # with a space, config won't reset this. This is a hack to override |