Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Unified Diff: Makefile.am

Issue 12388030: Update Opus to 1.0.2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/opus
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « COPYING ('k') | Makefile.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.am
diff --git a/Makefile.am b/Makefile.am
index db37d99817b4766fd964b38c95909eafc98df11e..85909ce82e5ef6fafe954cff854203f2bb5668fb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -126,24 +126,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
« no previous file with comments | « COPYING ('k') | Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698