diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-28 09:30:03 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-28 09:30:03 +0000 |
commit | 8e9a8300d6d64c7426278ef7bf5b72c9d5a1ad6c (patch) | |
tree | e0c5b8fbe8c67703042f7904c463e0bc823abcf7 | |
parent | 8ab89912840d9be7840e7d79b25968ebbe2661d0 (diff) | |
download | gcc-8e9a8300d6d64c7426278ef7bf5b72c9d5a1ad6c.tar.gz |
* stdio/configure.in, tests/configure.in: Update with yesterday's
toplevel configure.in changes.
* testsuite/cofnigure.in: Likewise.
* config.shared: Fix typo in yesterday's changes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17527 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libio/ChangeLog | 8 | ||||
-rw-r--r-- | libio/config.shared | 3 | ||||
-rw-r--r-- | libio/stdio/configure.in | 3 | ||||
-rw-r--r-- | libio/tests/configure.in | 3 | ||||
-rw-r--r-- | libio/testsuite/configure.in | 3 |
5 files changed, 16 insertions, 4 deletions
diff --git a/libio/ChangeLog b/libio/ChangeLog index 159d3c13342..1ab4de979d9 100644 --- a/libio/ChangeLog +++ b/libio/ChangeLog @@ -1,3 +1,11 @@ +Wed Jan 28 10:27:11 1998 Manfred Hollstein <manfred@s-direktnet.de> + + * stdio/configure.in, tests/configure.in: Update with yesterday's + toplevel configure.in changes. + * testsuite/configure.in: Likewise. + + * config.shared: Fix typo in yesterday's changes. + Tue Jan 27 23:26:07 1998 Manfred Hollstein <manfred@s-direktnet.de> * config.shared: Emit everything which needs to be re-definable diff --git a/libio/config.shared b/libio/config.shared index 41b273f19d5..66193726dd0 100644 --- a/libio/config.shared +++ b/libio/config.shared @@ -218,6 +218,7 @@ if [ "${SUBDIRS}" != "" ] ; then echo >&2 ' "prefix=$(prefix)" \' echo >&2 ' "exec_prefix=$(exec_prefix)" \' echo >&2 ' "tooldir=$(tooldir)" \' + echo >&2 ' "gxx_include_dir=$(gxx_include_dir)" \' echo >&2 ' "AR=$(AR)" \' echo >&2 ' "AR_FLAGS=$(AR_FLAGS)" \' echo >&2 ' "CC=$(CC)" \' @@ -453,7 +454,7 @@ echo >&2 '' echo >&2 '.NOEXPORT:' echo >&2 'MAKEOVERRIDES=' -cat <<"EOF" +cat >&2 <<"EOF" DEPEND_SOURCES = ${srcdir}/*.cc ${srcdir}/*.c depend.new: # The sed script below attempts to make the depend output portable. diff --git a/libio/stdio/configure.in b/libio/stdio/configure.in index 21e920acf47..83cac17ebc7 100644 --- a/libio/stdio/configure.in +++ b/libio/stdio/configure.in @@ -6,6 +6,7 @@ configdirs= srctrigger=stdio.h srcname="libio/stdio" package_makefile_frag=../Make.pack +package_makefile_rules_frag=../Make.pack.r # per-host: @@ -15,7 +16,7 @@ LIBDIR=yes TO_TOPDIR=../../ ALL=nothing MOSTLYCLEAN='*.o pic stamp-picdir core stdio.list' -(. ${srcdir}/../config.shared) >${package_makefile_frag} +(. ${srcdir}/../config.shared) >${package_makefile_frag} 2>${package_makefile_rules_frag} # post-target: diff --git a/libio/tests/configure.in b/libio/tests/configure.in index 1a8ad31ae92..46deefbc8c9 100644 --- a/libio/tests/configure.in +++ b/libio/tests/configure.in @@ -6,6 +6,7 @@ configdirs= srctrigger=tFile.cc srcname="test C++ input/output library" package_makefile_frag=Make.pack +package_makefile_rules_frag=Make.pack.r # per-host: @@ -16,7 +17,7 @@ ALL=' ' XCINCLUDES='-I. -I.. -I$(srcdir) -I$(srcdir)/..' XCXXINCLUDES='-I. -I.. -I$(srcdir) -I$(srcdir)/..' MOSTLYCLEAN='*.o core $(JUNK_TO_CLEAN)' -(. ${srcdir}/../config.shared) >${package_makefile_frag} +(. ${srcdir}/../config.shared) >${package_makefile_frag} 2>${package_makefile_rules_frag} if [ "${srcdir}" = "." ] ; then if [ "${with_target_subdir}" != "." ] ; then diff --git a/libio/testsuite/configure.in b/libio/testsuite/configure.in index f1bea6a866b..cd400c84ba2 100644 --- a/libio/testsuite/configure.in +++ b/libio/testsuite/configure.in @@ -6,6 +6,7 @@ configdirs= srctrigger=libio.tests/hounddog.exp srcname="test C++ input/output library, dejagnu style" package_makefile_frag=Make.pack +package_makefile_rules_frag=Make.pack.r # per-host: @@ -16,6 +17,6 @@ ALL=' ' XCINCLUDES='-I. -I.. -I$(srcdir) -I$(srcdir)/..' XCXXINCLUDES='-I. -I.. -I$(srcdir) -I$(srcdir)/..' MOSTLYCLEAN='*.o core $(JUNK_TO_CLEAN)' -(. ${srcdir}/../config.shared) >${package_makefile_frag} +(. ${srcdir}/../config.shared) >${package_makefile_frag} 2>${package_makefile_rules_frag} # post-target: |