]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Add missing prerequisite to generated header [PR106162]
authorJonathan Wakely <jwakely@redhat.com>
Fri, 1 Jul 2022 21:23:43 +0000 (22:23 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 1 Jul 2022 21:42:55 +0000 (22:42 +0100)
The ${host_builddir}/largefile-config.h header can't be written until
its parent directory has been created, so it needs to have the creation
of that directory as a prerequisite.

libstdc++-v3/ChangeLog:

PR libstdc++/106162
* include/Makefile.am (largefile-config.h): Add
stamp-${host_alias} prerequisite.
* include/Makefile.in: Regenerate.

libstdc++-v3/include/Makefile.am
libstdc++-v3/include/Makefile.in

index b46def7ff9ff85b192117a615479d77d1454aa17..069a16ec769e76914982e7fcf5fb4b54dc1b431a 100644 (file)
@@ -1286,7 +1286,7 @@ stamp-float128:
 endif
 
 # This header is not installed, it's only used to build libstdc++ itself.
-${host_builddir}/largefile-config.h: ${CONFIG_HEADER}
+${host_builddir}/largefile-config.h: ${CONFIG_HEADER} stamp-${host_alias}
        @rm -f $@.tmp
        @-grep 'define _DARWIN_USE_64_BIT_INODE' ${CONFIG_HEADER} >> $@.tmp
        @-grep 'define _FILE_OFFSET_BITS' ${CONFIG_HEADER} >> $@.tmp
index f844008a7c57d5c9fcc3a2262d6d99a8cc7a9b00..36eff73139d8b55d49cc2b4e5044aee028a0e8ce 100644 (file)
@@ -1780,7 +1780,7 @@ stamp-host: ${host_headers} ${bits_host_headers} ${ext_host_headers} ${host_head
 @ENABLE_FLOAT128_FALSE@        echo 'undef _GLIBCXX_USE_FLOAT128' > stamp-float128
 
 # This header is not installed, it's only used to build libstdc++ itself.
-${host_builddir}/largefile-config.h: ${CONFIG_HEADER}
+${host_builddir}/largefile-config.h: ${CONFIG_HEADER} stamp-${host_alias}
        @rm -f $@.tmp
        @-grep 'define _DARWIN_USE_64_BIT_INODE' ${CONFIG_HEADER} >> $@.tmp
        @-grep 'define _FILE_OFFSET_BITS' ${CONFIG_HEADER} >> $@.tmp