Mon May 13 19:52:33 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>

* Makerules (stub-$(subdir)): Put cmds including cd inside (...) with
	output redirect outside it.
This commit is contained in:
Roland McGrath 1996-05-14 02:28:12 +00:00
parent 8ab41b4bab
commit c4cc693de7

View File

@ -754,12 +754,12 @@ stubs: $(common-objpfx)stub-$(subdir)
s = $(sysdep_dir)/stub
$(common-objpfx)stub-$(subdir): $(+depfiles)
# Use /dev/null since `...` might expand to empty.
s=`cd $s; /bin/pwd`; \
$(patsubst %,cd %;,$(objdir)) \
sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
`sed -n 's@^.*$s/\([a-z0-9_-]*\.c\).*$$@'"$$s"/'\1@p' \
$(patsubst $(objpfx)%,%,$^) /dev/null` \
/dev/null > $(@F)T
(s=`cd $s; /bin/pwd`; \
$(patsubst %,cd %;,$(objdir)) \
sed -n 's/^stub_warning *(\([^)]*\).*$$/#define __stub_\1/p' \
`sed -n 's@^.*$s/\([a-z0-9_-]*\.c\).*$$@'"$$s"/'\1@p' \
$(patsubst $(objpfx)%,%,$^) /dev/null` \
/dev/null) > $@T
mv -f $@T $@
# Make the distribution tar file.