Skip to content

Commit

Permalink
[autoconf] Fix the build failure by quoting the strings.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232090 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
loganchien committed Mar 12, 2015
1 parent be45e0e commit fed84ed
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions autoconf/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -858,8 +858,8 @@ case "$ENABLE_DOXYGEN_SEARCH" in
yes)
AC_SUBST(enable_external_search,[YES])
AC_SUBST(enable_server_based_search,[YES])
AC_SUBST(searchengine_url,[$WITH_DOXYGEN_SEARCH_ENGINE_URL])
AC_SUBST(extra_search_mappings,[$WITH_DOXYGEN_SEARCH_MAPPINGS])
AC_SUBST(searchengine_url,["$WITH_DOXYGEN_SEARCH_ENGINE_URL"])
AC_SUBST(extra_search_mappings,["$WITH_DOXYGEN_SEARCH_MAPPINGS"])
;;

no|default)
Expand Down Expand Up @@ -901,17 +901,17 @@ case "$enableval" in
AC_SUBST(llvm_doxygen_generate_qhp,[YES])
AC_SUBST(llvm_doxygen_qch_filename,[org.llvm.qch])
AC_SUBST(llvm_doxygen_qhp_namespace,[org.llvm])
AC_SUBST(llvm_doxygen_qhelpgenerator_path,[$QHELPGENERATOR])
AC_SUBST(llvm_doxygen_qhp_cust_filter_name,[$PACKAGE_STRING])
AC_SUBST(llvm_doxygen_qhp_cust_filter_attrs,[$PACKAGE_NAME,$PACKAGE_VERSION])
AC_SUBST(llvm_doxygen_qhelpgenerator_path,["$QHELPGENERATOR"])
AC_SUBST(llvm_doxygen_qhp_cust_filter_name,["$PACKAGE_STRING"])
AC_SUBST(llvm_doxygen_qhp_cust_filter_attrs,["$PACKAGE_NAME,$PACKAGE_VERSION"])

dnl Qt help file for clang doxygen documentation
AC_SUBST(clang_doxygen_generate_qhp,[YES])
AC_SUBST(clang_doxygen_qch_filename,[org.llvm.clang.qch])
AC_SUBST(clang_doxygen_qhp_namespace,[org.llvm.clang])
AC_SUBST(clang_doxygen_qhelpgenerator_path,[$QHELPGENERATOR])
AC_SUBST(clang_doxygen_qhp_cust_filter_name,[Clang $PACKAGE_VERSION])
AC_SUBST(clang_doxygen_qhp_cust_filter_attrs,[Clang,$PACKAGE_VERSION])
AC_SUBST(clang_doxygen_qhelpgenerator_path,["$QHELPGENERATOR"])
AC_SUBST(clang_doxygen_qhp_cust_filter_name,["Clang $PACKAGE_VERSION"])
AC_SUBST(clang_doxygen_qhp_cust_filter_attrs,["Clang,$PACKAGE_VERSION"])
;;

no|default)
Expand All @@ -926,8 +926,8 @@ case "$enableval" in
AC_SUBST(clang_doxygen_qch_filename,[])
AC_SUBST(clang_doxygen_qhp_namespace,[])
AC_SUBST(clang_doxygen_qhelpgenerator_path,[])
AC_SUBST(clang_doxygen_qhp_cust_filter_name,[Clang $PACKAGE_VERSION])
AC_SUBST(clang_doxygen_qhp_cust_filter_attrs,[Clang,$PACKAGE_VERSION])
AC_SUBST(clang_doxygen_qhp_cust_filter_name,["Clang $PACKAGE_VERSION"])
AC_SUBST(clang_doxygen_qhp_cust_filter_attrs,["Clang,$PACKAGE_VERSION"])
;;

*)
Expand Down
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -5221,9 +5221,9 @@ echo "$as_me: error: The option --enable-doxygen-search requires --enable-doxyge

enable_server_based_search=YES

searchengine_url=$WITH_DOXYGEN_SEARCH_ENGINE_URL
searchengine_url="$WITH_DOXYGEN_SEARCH_ENGINE_URL"

extra_search_mappings=$WITH_DOXYGEN_SEARCH_MAPPINGS
extra_search_mappings="$WITH_DOXYGEN_SEARCH_MAPPINGS"

;;

Expand Down Expand Up @@ -5319,11 +5319,11 @@ fi

llvm_doxygen_qhp_namespace=org.llvm

llvm_doxygen_qhelpgenerator_path=$QHELPGENERATOR
llvm_doxygen_qhelpgenerator_path="$QHELPGENERATOR"

llvm_doxygen_qhp_cust_filter_name=$PACKAGE_STRING
llvm_doxygen_qhp_cust_filter_name="$PACKAGE_STRING"

llvm_doxygen_qhp_cust_filter_attrs=$PACKAGE_NAME,$PACKAGE_VERSION
llvm_doxygen_qhp_cust_filter_attrs="$PACKAGE_NAME,$PACKAGE_VERSION"


clang_doxygen_generate_qhp=YES
Expand All @@ -5332,11 +5332,11 @@ fi

clang_doxygen_qhp_namespace=org.llvm.clang

clang_doxygen_qhelpgenerator_path=$QHELPGENERATOR
clang_doxygen_qhelpgenerator_path="$QHELPGENERATOR"

clang_doxygen_qhp_cust_filter_name=Clang $PACKAGE_VERSION
clang_doxygen_qhp_cust_filter_name="Clang $PACKAGE_VERSION"

clang_doxygen_qhp_cust_filter_attrs=Clang,$PACKAGE_VERSION
clang_doxygen_qhp_cust_filter_attrs="Clang,$PACKAGE_VERSION"

;;

Expand All @@ -5354,9 +5354,9 @@ fi



clang_doxygen_qhp_cust_filter_name=Clang $PACKAGE_VERSION
clang_doxygen_qhp_cust_filter_name="Clang $PACKAGE_VERSION"

clang_doxygen_qhp_cust_filter_attrs=Clang,$PACKAGE_VERSION
clang_doxygen_qhp_cust_filter_attrs="Clang,$PACKAGE_VERSION"

;;

Expand Down

0 comments on commit fed84ed

Please sign in to comment.