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 | 406525d2df173778749c51d4ff39a82dc1971c83 (patch) | |
tree | b75310a774c52f56f140dead49ab0051b40a722e /llvm/docs/Makefile | |
parent | 501ecf9fac4c7ec24081e930f53363295c2709c1 (diff) | |
download | bcm5719-llvm-406525d2df173778749c51d4ff39a82dc1971c83.tar.gz bcm5719-llvm-406525d2df173778749c51d4ff39a82dc1971c83.zip |
[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.
llvm-svn: 189522
Diffstat (limited to 'llvm/docs/Makefile')
-rw-r--r-- | llvm/docs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/docs/Makefile b/llvm/docs/Makefile index e830a3235ad..502049174a2 100644 --- a/llvm/docs/Makefile +++ b/llvm/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 |