mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
build: fix VPATH build of todo
Without this patch, the make rule in a VPATH build was trying to invoke ../../docs/../../docs/todo.pl, which didn't exist. * docs/Makefile.am (todo.html.in): Using $< already implies $(srcdir) in GNU make VPATH situations.
This commit is contained in:
parent
3fbc761552
commit
b8f36e74ad
@ -104,7 +104,7 @@ web: $(dot_html) html/index.html devhelp/index.html
|
|||||||
todo.html.in: todo.pl
|
todo.html.in: todo.pl
|
||||||
if [ -f todo.cfg ]; then \
|
if [ -f todo.cfg ]; then \
|
||||||
echo "Generating $@"; \
|
echo "Generating $@"; \
|
||||||
$(PERL) $(srcdir)/$< > $@ \
|
$(PERL) $< > $@ \
|
||||||
|| { rm $@ && exit 1; }; \
|
|| { rm $@ && exit 1; }; \
|
||||||
else \
|
else \
|
||||||
echo "Stubbing $@"; \
|
echo "Stubbing $@"; \
|
||||||
|
Loading…
Reference in New Issue
Block a user