diff options
| author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-01-08 19:43:11 +0000 |
|---|---|---|
| committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-01-08 19:43:11 +0000 |
| commit | 7ec3af37b976cec2b96de29eb9e39929f0bd4412 (patch) | |
| tree | 74bfbc3c4b75c875cfd9bdb958a5f1862b04354d /libstdc++-v3/src | |
| parent | 11f6b45110134be43f0fbdaf7fa45691acbffbbb (diff) | |
| download | gcc-7ec3af37b976cec2b96de29eb9e39929f0bd4412.tar.gz gcc-7ec3af37b976cec2b96de29eb9e39929f0bd4412.tar.bz2 gcc-7ec3af37b976cec2b96de29eb9e39929f0bd4412.zip | |
[multiple changes]
2003-01-08 Benjamin Kosnik <bkoz@redhat.com>
* include/Makefile.am (stamp-*): Add checks for existing stamps.
* include/Makefile.in: Regenerate.
* acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Correct comment.
* aclocal.m4: Regenerate.
* configure.in: Don't add new multi-do rules every time the
directory is reconfigured.
* configure: Regenerate.
2003-01-08 Brad Spencer <spencer@infointeractive.com>
Nathan Myers <ncm@cantrip.org>
* src/Makefile.am (stamp-debug): Clean.
* src/Makefile.in: Regenerate.
From-SVN: r61052
Diffstat (limited to 'libstdc++-v3/src')
| -rw-r--r-- | libstdc++-v3/src/Makefile.am | 15 | ||||
| -rw-r--r-- | libstdc++-v3/src/Makefile.in | 13 |
2 files changed, 13 insertions, 15 deletions
diff --git a/libstdc++-v3/src/Makefile.am b/libstdc++-v3/src/Makefile.am index 534d58c4f90..ee2affc3f45 100644 --- a/libstdc++-v3/src/Makefile.am +++ b/libstdc++-v3/src/Makefile.am @@ -1,6 +1,6 @@ ## Makefile for the src subdirectory of the GNU C++ Standard library. ## -## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 +## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 ## Free Software Foundation, Inc. ## ## This file is part of the libstdc++ version 3 distribution. @@ -239,13 +239,12 @@ stamp-debug: if test ! -d ${debugdir}; then \ mkdir -p ${debugdir}; \ (cd ${debugdir}; \ - cp ../Makefile .; \ - sed 's/top_builddir = ../top_builddir = ..\/../g' \ - < Makefile > temp.1; \ - sed 's/all-local: build_debug/all-local:/g' < temp.1 > temp.2; \ - sed 's/install-data-local: install_debug/install-data-local:/g' \ - < temp.2 > temp.3; \ - mv temp.3 Makefile) ; \ + sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \ + -e 's/srcdir = \.\./srcdir = ..\/../' \ + -e 's/glibcpp_basedir = \.\./glibcpp_basedir = ..\/../' \ + -e 's/all-local: build_debug/all-local:/' \ + -e 's/install-data-local: install_debug/install-data-local:/' \ + < ../Makefile > Makefile) ; \ fi; \ echo `date` > stamp-debug; diff --git a/libstdc++-v3/src/Makefile.in b/libstdc++-v3/src/Makefile.in index ab9510edd17..a94408fbb1c 100644 --- a/libstdc++-v3/src/Makefile.in +++ b/libstdc++-v3/src/Makefile.in @@ -594,13 +594,12 @@ stamp-debug: if test ! -d ${debugdir}; then \ mkdir -p ${debugdir}; \ (cd ${debugdir}; \ - cp ../Makefile .; \ - sed 's/top_builddir = ../top_builddir = ..\/../g' \ - < Makefile > temp.1; \ - sed 's/all-local: build_debug/all-local:/g' < temp.1 > temp.2; \ - sed 's/install-data-local: install_debug/install-data-local:/g' \ - < temp.2 > temp.3; \ - mv temp.3 Makefile) ; \ + sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \ + -e 's/srcdir = \.\./srcdir = ..\/../' \ + -e 's/glibcpp_basedir = \.\./glibcpp_basedir = ..\/../' \ + -e 's/all-local: build_debug/all-local:/' \ + -e 's/install-data-local: install_debug/install-data-local:/' \ + < ../Makefile > Makefile) ; \ fi; \ echo `date` > stamp-debug; |
