diff options
author | albert-github <albert.tests@gmail.com> | 2014-04-26 09:18:14 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-04-26 09:18:14 (GMT) |
commit | fd4b42ec54cb8d6faf2b0f16e580f376e8cf6982 (patch) | |
tree | 4a5c73dc2ed83ba53b007fa2ae7c0bbbe9d519ef /configure | |
parent | 0d50c30becc147918b091c02b41502829b8083a3 (diff) | |
download | Doxygen-fd4b42ec54cb8d6faf2b0f16e580f376e8cf6982.zip Doxygen-fd4b42ec54cb8d6faf2b0f16e580f376e8cf6982.tar.gz Doxygen-fd4b42ec54cb8d6faf2b0f16e580f376e8cf6982.tar.bz2 |
Bug 728654 - configuration stops with settings.h missing
This bug fix fixes, in a general way, a number of issues encountered on Solaris
- configure
- ! (exclamation mark) not recognized properly, but with mkdir -p no test is necessary
- sed problem regarding removing last , (comma) in language list. Is automatically replaced in with a space when translating language names to upper case.
- lang_cfg.py
- corrected check on number of arguments
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -51,7 +51,7 @@ f_libclangstatic=NO # first setup the list with availabe languages, so we cannot forget any # list will be in case as specified (f_langs) and in uppercase (f_ulangs) as used in the internal perl script # -f_langs=`ls -1 src/translator_??.h | sed -e 's%src/translator_%%g' | sed -e 's/\.h//' | tr '\012' ',' | sed -e 's/,$//'` +f_langs=`ls -1 src/translator_??.h | sed -e 's%src/translator_%%g' | sed -e 's/\.h//' | tr '\012' ','` while test -n "$1"; do case $1 in @@ -708,13 +708,9 @@ fi # ----------------------------------------------------------------------------- -if ! test -d "generated_src/doxygen"; then - mkdir -p generated_src/doxygen -fi +mkdir -p generated_src/doxygen if test "$f_wizard" = YES; then - if ! test -d "generated_src/doxywizard"; then - mkdir -p generated_src/doxywizard - fi + mkdir -p generated_src/doxywizard fi # |