diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 7 | ||||
-rw-r--r-- | opcodes/aclocal.m4 | 1 | ||||
-rwxr-xr-x | opcodes/configure | 18 | ||||
-rw-r--r-- | opcodes/configure.ac | 2 |
4 files changed, 28 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index ff421a5..88d0103 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +2021-01-12 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/26792 + * configure.ac: Use GNU_MAKE_JOBSERVER. + * aclocal.m4: Regenerated. + * configure: Likewise. + 2021-01-12 Nick Clifton <nickc@redhat.com> * po/sr.po: Updated Serbian translation. diff --git a/opcodes/aclocal.m4 b/opcodes/aclocal.m4 index 36b1327..5ab3cf3 100644 --- a/opcodes/aclocal.m4 +++ b/opcodes/aclocal.m4 @@ -1172,6 +1172,7 @@ m4_include([../bfd/warning.m4]) m4_include([../config/acx.m4]) m4_include([../config/depstand.m4]) m4_include([../config/gettext-sister.m4]) +m4_include([../config/jobserver.m4]) m4_include([../config/lead-dot.m4]) m4_include([../config/nls.m4]) m4_include([../config/override.m4]) diff --git a/opcodes/configure b/opcodes/configure index e9f68df..a0934e1 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -15488,3 +15488,21 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi + + +touch config.status.tmp +if touch --reference=config.status config.status.tmp > /dev/null 2>&1; then + sed '/as_fn_exit 0/i \ +sed -e \"s/^\t\\\(\\\$(AM_V_CCLD)\\\)/\t+ \\\1/\" Makefile > Makefile.tmp \ +touch --reference=Makefile Makefile.tmp \ +mv Makefile.tmp Makefile \ +' config.status > config.status.tmp + touch --reference=config.status config.status.tmp + mv config.status.tmp config.status + chmod +x config.status + sed -e "s/^\t\(\$(AM_V_CCLD)\)/\t+ \1/" Makefile > Makefile.tmp + touch --reference=Makefile Makefile.tmp + mv Makefile.tmp Makefile +else + rm -f config.status.tmp +fi diff --git a/opcodes/configure.ac b/opcodes/configure.ac index 07e95f0..2192979 100644 --- a/opcodes/configure.ac +++ b/opcodes/configure.ac @@ -382,3 +382,5 @@ AC_SUBST(BFD_MACHINES) AC_CONFIG_FILES([Makefile po/Makefile.in:po/Make-in]) AC_OUTPUT + +GNU_MAKE_JOBSERVER |