diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-03 15:49:12 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-03 15:49:12 +0300 |
commit | e1a7ff54e8f2615159c2681bbdf35876b2670014 (patch) | |
tree | 5feb90b6cd026df0eaa203b47df93e4d329aeb48 /configure.in | |
parent | 0f12f0b5b26830b48047988c7822f8bb1a9c2927 (diff) |
Bin the fairly pointless --enable-check-only option
Diffstat (limited to 'configure.in')
-rwxr-xr-x | configure.in | 36 |
1 files changed, 5 insertions, 31 deletions
diff --git a/configure.in b/configure.in index 7b21b82e85f8..28572d45cb29 100755 --- a/configure.in +++ b/configure.in @@ -396,15 +396,6 @@ AC_ARG_ENABLE(neon, [Disable neon and the compilation of webdav binding.]), ,) -AC_ARG_ENABLE(check-only, - AS_HELP_STRING([--enable-check-only], - [Use this option option if you just want to check your environment. - This option stops the generation of an ????env.set.]) - [ - Usage: --enable-check-only=yes - ], -,) - AC_ARG_ENABLE(build-unowinreg, AS_HELP_STRING([--enable-build-unowinreg], [Do not use the prebuilt unowinreg.dll. Build it instead. The MinGW C++ @@ -8703,27 +8694,10 @@ else echo > set_soenv.stamp fi -dnl Executing the set_soenv script to setup the environment variables. -chmod a+x set_soenv -if test -z "$enable_check_only"; then - './set_soenv' -else - echo - echo Test Complete - echo No environment file will be generated - echo - num_warnings=`wc -l warn` - _num=`echo $num_warnings | $AWK '{ print $1 }'` - if test $_num -gt 0; then - echo The following warning\(s\) were generated by configure - echo ---------------------------------------------------- - echo - cat warn - echo - else - echo There were no warnings - fi - echo -fi +dnl Run the set_soenv script to setup the *Env.sh script that sets +dnl environment variables for the build. +chmod +x set_soenv + +./set_soenv dnl vim:set shiftwidth=4 softtabstop=4 expandtab: |