diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-08-28 21:55:26 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-08-28 21:55:26 +0000 |
commit | 4cff093bd6a1a474aff638f6ad32d56914c7488e (patch) | |
tree | 9599b625d8e7010fbce6f775499b05032627e44f /docs/Makefile | |
parent | 98b5be8062d33bde9a963c00326ce2483db18f9f (diff) | |
download | external_llvm-4cff093bd6a1a474aff638f6ad32d56914c7488e.zip external_llvm-4cff093bd6a1a474aff638f6ad32d56914c7488e.tar.gz external_llvm-4cff093bd6a1a474aff638f6ad32d56914c7488e.tar.bz2 |
[doxygen] Use correct variable names for external variable configuration and make EXTRA_SEARCH_MAPPINGS a "dumb" variable.
I do not think the massaging that I was doing for EXTRA_SEARCH_MAPPINGS was
truly necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189522 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile index e830a32..5020491 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -21,9 +21,10 @@ $(PROJ_OBJ_DIR)/doxygen.cfg: doxygen.cfg.in -e 's/@PACKAGE_VERSION@/mainline/' \ -e 's/@abs_top_builddir@/../g' \ -e 's/@enable_searchengine@/NO/g' \ - -e 's/@enable_server_based_search@/NO/g' \ + -e 's/@searchengine_url@//g' \ + -e 's/@enable_server_based_search@/NO/g' \ -e 's/@enable_external_search@/NO/g' \ - -e 's/@extra_search_mappings@/NO/g' > $@ + -e 's/@extra_search_mappings@//g' > $@ endif include $(LEVEL)/Makefile.common |