diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-09-04 19:14:10 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-09-04 19:14:10 (GMT) |
commit | d20edf5ddd0f90ea5b220ad743bf311f74383fc8 (patch) | |
tree | 9eaad18e2e95d04758839bfe77adefaaa1695f7d /src/config.l | |
parent | 77a2ce8e15c967422cb1ff01dc78f5d9b1892c3d (diff) | |
download | Doxygen-d20edf5ddd0f90ea5b220ad743bf311f74383fc8.zip Doxygen-d20edf5ddd0f90ea5b220ad743bf311f74383fc8.tar.gz Doxygen-d20edf5ddd0f90ea5b220ad743bf311f74383fc8.tar.bz2 |
Release-1.3.3-20030904
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/src/config.l b/src/config.l index f07ba8a..b42f20d 100644 --- a/src/config.l +++ b/src/config.l @@ -1175,38 +1175,38 @@ void Config::check() // } // // } - // check perl path - bool found=FALSE; - QCString &perlPath = Config_getString("PERL_PATH"); - if (perlPath.isEmpty()) - { - QFileInfo fi; - fi.setFile("/usr/bin/perl"); - if (fi.exists()) - { - perlPath="/usr/bin/perl"; - found=TRUE; - } - else - { - fi.setFile("/usr/local/bin/perl"); - if (fi.exists()) - { - perlPath="/usr/local/bin/perl"; - found=TRUE; - } - } - } - if (!found) - { - QFileInfo fi(perlPath); - if (!fi.exists()) - { - config_warn("Warning: tag PERL_PATH: perl interpreter not found at default or" - "user specified (%s) location\n", - perlPath.data()); - } - } +// // check perl path +// bool found=FALSE; +// QCString &perlPath = Config_getString("PERL_PATH"); +// if (perlPath.isEmpty()) +// { +// QFileInfo fi; +// fi.setFile("/usr/bin/perl"); +// if (fi.exists()) +// { +// perlPath="/usr/bin/perl"; +// found=TRUE; +// } +// else +// { +// fi.setFile("/usr/local/bin/perl"); +// if (fi.exists()) +// { +// perlPath="/usr/local/bin/perl"; +// found=TRUE; +// } +// } +// } +// if (!found) +// { +// QFileInfo fi(perlPath); +// if (!fi.exists()) +// { +// config_warn("Warning: tag PERL_PATH: perl interpreter not found at default or" +// "user specified (%s) location\n", +// perlPath.data()); +// } +// } #undef PUTENV #undef SEP |