This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch, mips] Fix parallel build on MIPS


On Friday 30 August 2013 11:04:02 Steve Ellcey wrote:
> --- a/libgloss/mips/Makefile.in
> +++ b/libgloss/mips/Makefile.in
> @@ -202,7 +202,8 @@ distclean maintainer-clean realclean: clean
>  .PHONY: install info install-info clean-info
>  install:
>  	@for file in $(CRT0) $(PCRT0) $(BSP); do \
> -	  $(INSTALL_DATA) $${file} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
> +	  mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
> +	  $(INSTALL_DATA) $${file}
> $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$${file}; \

shouldn't the mkdir be done outside of the for loop ?
-mike

Attachment: signature.asc
Description: This is a digitally signed message part.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]