From: Doug Rupp Date: Mon, 7 Aug 2017 19:55:55 +0000 (+0000) Subject: Makefile.in (install-mkheaders): Fix typo, where the multi_dir variable was reference... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=664650989a1623935155077e3ad222ed1b9b7a75;p=gcc.git Makefile.in (install-mkheaders): Fix typo, where the multi_dir variable was referenced as multidir in command. 2017-08-07 Douglas Rupp * Makefile.in (install-mkheaders): Fix typo, where the multi_dir variable was referenced as multidir in command. From-SVN: r250930 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e9b90b0ffdf..091cbb1df3c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-08-07 Douglas Rupp + + * Makefile.in (install-mkheaders): Fix typo, where the multi_dir + variable was referenced as multidir in command. + 2017-08-07 Jakub Jelinek PR c/69389 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index efca9169671..0bde7acf914 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3776,7 +3776,7 @@ install-mkheaders: stmp-int-hdrs install-itoolsdirs \ set -e; for ml in `cat fixinc_list`; do \ multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}; \ - $(INSTALL_DATA) include-fixed$${multidir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \ + $(INSTALL_DATA) include-fixed$${multi_dir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \ done $(INSTALL_SCRIPT) $(srcdir)/../mkinstalldirs \ $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \