diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-11 04:32:25 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-11 04:32:25 +0000 |
commit | 767dada0d4d8c6330ac89434c77c920f8d197561 (patch) | |
tree | 77b158ae4755819a1b4b03fa99ceedbd6f11df92 /libstdc++-v3/src | |
parent | 4cce0a933585d241881a28030e79de3b104ddf4f (diff) | |
download | gcc-767dada0d4d8c6330ac89434c77c920f8d197561.tar.gz |
Missed one spot from the previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69213 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r-- | libstdc++-v3/src/Makefile.am | 2 | ||||
-rw-r--r-- | libstdc++-v3/src/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/src/Makefile.am b/libstdc++-v3/src/Makefile.am index b8475e3dd52..da43744157b 100644 --- a/libstdc++-v3/src/Makefile.am +++ b/libstdc++-v3/src/Makefile.am @@ -43,7 +43,7 @@ libstdc++-symbol.ver: ${glibcxx_srcdir}/@SYMVER_MAP@ if test "x@port_specific_symbol_files@" != x; then \ sed -n '1,/DO NOT DELETE/p' $@ > tmp.top; \ sed -n '/DO NOT DELETE/,$$p' $@ > tmp.bottom; \ - cat tmp.top @port_specific_symbol_file@ tmp.bottom > $@; \ + cat tmp.top @port_specific_symbol_files@ tmp.bottom > $@; \ rm tmp.top tmp.bottom; \ fi else diff --git a/libstdc++-v3/src/Makefile.in b/libstdc++-v3/src/Makefile.in index fada411052e..6f58567bc45 100644 --- a/libstdc++-v3/src/Makefile.in +++ b/libstdc++-v3/src/Makefile.in @@ -491,7 +491,7 @@ mostlyclean distclean maintainer-clean @GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ if test "x@port_specific_symbol_files@" != x; then \ @GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ sed -n '1,/DO NOT DELETE/p' $@ > tmp.top; \ @GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ sed -n '/DO NOT DELETE/,$$p' $@ > tmp.bottom; \ -@GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ cat tmp.top @port_specific_symbol_file@ tmp.bottom > $@; \ +@GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ cat tmp.top @port_specific_symbol_files@ tmp.bottom > $@; \ @GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ rm tmp.top tmp.bottom; \ @GLIBCXX_BUILD_VERSIONED_SHLIB_TRUE@ fi @GLIBCXX_BUILD_VERSIONED_SHLIB_FALSE@libstdc++-symbol.ver: |