Navigation Menu

Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mroonga/mroonga
Browse files Browse the repository at this point in the history
  • Loading branch information
Kentoku committed Jul 28, 2012
2 parents 3898014 + 1059a33 commit 7874035
Show file tree
Hide file tree
Showing 38 changed files with 1,633 additions and 589 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -56,3 +56,5 @@ cmake_install.cmake
/CMakeCache.txt
/CMakeFiles/
/INSTALL
/packages/apt/tmp/
/packages/yum/tmp/
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -146,5 +146,5 @@ misc:
echo "\$$(CUTTER_SOURCE_PATH) is missing"; \
exit 1; \
fi
ln -s "$(CUTTER_SOURCE_PATH)/misc" misc;
ln -s "$(CUTTER_SOURCE_PATH)/misc" misc

6 changes: 5 additions & 1 deletion build/makefiles/sphinx-build.am
Expand Up @@ -24,7 +24,11 @@ SPHINX_BUILD_COMMAND = \
if DOCUMENT_BUILDABLE
sphinx-ensure-updated:
if ! $(SPHINX_BUILD_COMMAND) 2>&1 | head -1 | grep 'v1.[2]' -q > /dev/null; then \
(cd $(SPHINX_DIR) && $(HG) pull --update); \
if test -d $(SPHINX_DIR); then \
(cd $(SPHINX_DIR) && $(HG) pull --update); \
else \
$(HG) clone https://bitbucket.org/birkenfeld/sphinx $(SPHINX_DIR); \
fi; \
fi
else
sphinx-ensure-updated:
Expand Down

0 comments on commit 7874035

Please sign in to comment.