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 /src | |
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 'src')
-rw-r--r-- | src/lang_cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lang_cfg.py b/src/lang_cfg.py index 9ba1319..329610f 100644 --- a/src/lang_cfg.py +++ b/src/lang_cfg.py @@ -1,6 +1,6 @@ import sys -if (len(sys.argv) > 0): +if (len(sys.argv) > 1): if (sys.argv[1] == "ENONLY"): print "#define ENGLISH_ONLY" else: |