Skip to content
Snippets Groups Projects
Commit b371cf84 authored by Ron's avatar Ron Committed by Jean-Marc Valin
Browse files

cd doc && make is not the same as make -C doc


Fixes a regression in the recursive builds introduced in 5467ce7b
that causes `make check-opus` to fail horribly.

Signed-off-by: default avatarJean-Marc Valin <jmvalin@jmvalin.ca>
parent 3aa26473
Loading
......@@ -127,24 +127,24 @@ install-opus: install
# Or just the docs
docs:
cd doc && $(MAKE) $(AM_MAKEFLAGS)
( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
install-docs:
cd doc && $(MAKE) $(AM_MAKEFLAGS) install
( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
# Or everything (by default)
all-local:
@[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS)
@[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) )
install-data-local:
@[ -n "$(NO_DOXYGEN)" ] || cd doc && $(MAKE) $(AM_MAKEFLAGS) install
@[ -n "$(NO_DOXYGEN)" ] || ( cd doc && $(MAKE) $(AM_MAKEFLAGS) install )
clean-local:
-cd doc && $(MAKE) $(AM_MAKEFLAGS) clean
-( cd doc && $(MAKE) $(AM_MAKEFLAGS) clean )
uninstall-local:
cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall
( cd doc && $(MAKE) $(AM_MAKEFLAGS) uninstall )
.PHONY: opus check-opus install-opus docs install-docs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment