Skip to content

Commit

Permalink
Fixes for ./configure script on Solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Jul 6, 2014
1 parent 070c355 commit d234115
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions configure
Expand Up @@ -716,9 +716,13 @@ fi

# -----------------------------------------------------------------------------

mkdir -p generated_src/doxygen
if test '!' -d "generated_src/doxygen"; then
mkdir -p generated_src/doxygen
fi
if test "$f_wizard" = YES; then
mkdir -p generated_src/doxywizard
if test '!' -d "generated_src/doxywizard"; then
mkdir -p generated_src/doxywizard
fi
fi

#
Expand Down Expand Up @@ -960,7 +964,7 @@ echo " Generating generated_src/doxygen/lang_cfg.h..."
if test "$f_english" = YES; then
$f_python src/lang_cfg.py ENONLY > generated_src/doxygen/lang_cfg.h
else
f_ulangs=`echo $f_langs | tr '[a-z,]' '[A-Z ]'`
f_ulangs=`echo $f_langs | tr '[a-z]' '[A-Z]' | tr ',' ' '`
$f_python src/lang_cfg.py $f_ulangs > generated_src/doxygen/lang_cfg.h
fi

Expand Down

0 comments on commit d234115

Please sign in to comment.