On 2/9/19 7:18 PM, Jakub Jelinek wrote: > On Sat, Feb 09, 2019 at 06:11:00PM +0000, Bernd Edlinger wrote: >> --- libphobos/libdruntime/Makefile.am (revision 268614) >> +++ libphobos/libdruntime/Makefile.am (working copy) >> @@ -140,10 +140,12 @@ clean-local: >> # Handles generated files as well >> install-data-local: >> for file in $(ALL_DRUNTIME_INSTALL_DSOURCES); do \ >> + $(MKDIR_P) `echo $(DESTDIR)$(gdc_include_dir)/$$file \ >> + | sed -e 's:/[^/]*$$::'` ; \ > > Perhaps better `dirname $(DESTDIR)$(gdc_include_dir)/$$file` ? >
Ah, yes, good point. Consider it changed. Thanks Bernd.