PR libstdc++/90770 fix missing src/debug/Makefile
authorJonathan Wakely <jwakely@redhat.com>
Fri, 7 Jun 2019 19:57:19 +0000 (20:57 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Fri, 7 Jun 2019 19:57:19 +0000 (20:57 +0100)
PR libstdc++/90770
* configure: Regenerate.
* src/Makefile.am (stamp-debug): Also test for missing makefile.
* src/Makefile.in: Regenerate.

From-SVN: r272050

libstdc++-v3/ChangeLog
libstdc++-v3/configure
libstdc++-v3/src/Makefile.am
libstdc++-v3/src/Makefile.in

index 39f8b0e3575a1bed3d50cf6bb669d4eff0bd10a0..78aafc6cf2165141f7bca4d769caeb1ce71f5554 100644 (file)
@@ -1,3 +1,10 @@
+2019-06-07  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/90770
+       * configure: Regenerate.
+       * src/Makefile.am (stamp-debug): Also test for missing makefile.
+       * src/Makefile.in: Regenerate.
+
 2019-06-06  Jonathan Wakely  <jwakely@redhat.com>
 
        * include/std/array: Do not include <stdexcept>.
index 7c45c340677cafe0c12c9244948b425f3e4a0904..4788acb93bb1788a4d12fdc5d3265544875a1b94 100755 (executable)
@@ -79874,7 +79874,7 @@ $as_echo "$ac_cv_x86_rdrand" >&6; }
 
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rdseed support in assembler" >&5
 $as_echo_n "checking for rdseed support in assembler... " >&6; }
-  if test "${ac_cv_x86_rdseed+set}" = set; then :
+  if ${ac_cv_x86_rdseed+:} false; then :
   $as_echo_n "(cached) " >&6
 else
 
index 436c2c56f132e45ac41e0aadf2907de87021e333..8511a3049c53aa22ec5f2046999897317a543494 100644 (file)
@@ -325,7 +325,7 @@ endif
 # Take care to fix all possibly-relative paths.
 debugdir = ${glibcxx_builddir}/src/debug
 stamp-debug:
-       if test ! -d ${debugdir}; then \
+       if test ! -d ${debugdir} || test ! -f ${debugdir}/Makefile ; then \
          mkdir -p ${debugdir}; \
          for d in $(SUBDIRS); do mkdir -p  ${debugdir}/$$d; done; \
          (cd ${debugdir}; \
index 1283b2720785acdcbb3047d84b57b6ba421096f6..d91f715898594e11b59c069f24b3b0bc87662f3b 100644 (file)
@@ -1047,7 +1047,7 @@ libstdc++convenience.la: $(toolexeclib_LTLIBRARIES)
        fi; \
        echo `date` > stamp-libstdc++convenience;
 stamp-debug:
-       if test ! -d ${debugdir}; then \
+       if test ! -d ${debugdir} || test ! -f ${debugdir}/Makefile ; then \
          mkdir -p ${debugdir}; \
          for d in $(SUBDIRS); do mkdir -p  ${debugdir}/$$d; done; \
          (cd ${debugdir}; \