mirror of git://gcc.gnu.org/git/gcc.git
Makefile.am (libstdc++-symbols.ver): Remove useless /dev/null.
* src/Makefile.am (libstdc++-symbols.ver): Remove useless /dev/null. * src/Makefile.in: Regenerate. From-SVN: r234783
This commit is contained in:
parent
8d7db618ba
commit
bef47e2c11
|
|
@ -1,3 +1,8 @@
|
|||
2016-04-06 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* src/Makefile.am (libstdc++-symbols.ver): Remove useless /dev/null.
|
||||
* src/Makefile.in: Regenerate.
|
||||
|
||||
2016-02-24 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
PR libstdc++/69939
|
||||
|
|
|
|||
|
|
@ -227,7 +227,7 @@ libstdc++-symbols.ver: ${glibcxx_srcdir}/$(SYMVER_FILE) \
|
|||
chmod +w $@.tmp
|
||||
if test "x$(port_specific_symbol_files)" != x; then \
|
||||
if grep '^# Appended to version file.' \
|
||||
$(port_specific_symbol_files) /dev/null > /dev/null 2>&1; then \
|
||||
$(port_specific_symbol_files) > /dev/null 2>&1; then \
|
||||
cat $(port_specific_symbol_files) >> $@.tmp; \
|
||||
else \
|
||||
sed -n '1,/DO NOT DELETE/p' $@.tmp > tmp.top; \
|
||||
|
|
|
|||
|
|
@ -938,7 +938,7 @@ compatibility-condvar.o: compatibility-condvar.cc
|
|||
@ENABLE_SYMVERS_TRUE@ chmod +w $@.tmp
|
||||
@ENABLE_SYMVERS_TRUE@ if test "x$(port_specific_symbol_files)" != x; then \
|
||||
@ENABLE_SYMVERS_TRUE@ if grep '^# Appended to version file.' \
|
||||
@ENABLE_SYMVERS_TRUE@ $(port_specific_symbol_files) /dev/null > /dev/null 2>&1; then \
|
||||
@ENABLE_SYMVERS_TRUE@ $(port_specific_symbol_files) > /dev/null 2>&1; then \
|
||||
@ENABLE_SYMVERS_TRUE@ cat $(port_specific_symbol_files) >> $@.tmp; \
|
||||
@ENABLE_SYMVERS_TRUE@ else \
|
||||
@ENABLE_SYMVERS_TRUE@ sed -n '1,/DO NOT DELETE/p' $@.tmp > tmp.top; \
|
||||
|
|
|
|||
Loading…
Reference in New Issue