diff options
author | oisin <oisin@openoffice.org> | 2001-02-07 10:37:00 +0000 |
---|---|---|
committer | oisin <oisin@openoffice.org> | 2001-02-07 10:37:00 +0000 |
commit | 105b273183e01d32ebc64de3d206b818ede8fa36 (patch) | |
tree | d7e7047036a222e7387ff0c77088cc8aa2c52137 /config_office | |
parent | c83313dba03ba36b460889f683930ee77d52bbf9 (diff) |
Tests for ml.exe and cygwin bash path now only carried out on Windows
Diffstat (limited to 'config_office')
-rw-r--r-- | config_office/configure.in | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/config_office/configure.in b/config_office/configure.in index a09caa765de1..a9136d935b1c 100644 --- a/config_office/configure.in +++ b/config_office/configure.in @@ -865,16 +865,14 @@ if test -z "$FLEX"; then AC_MSG_WARN([no flex found in \$PATH, install flex]) >> warn fi dnl *************************************** -dnl testing bash tools path on Windows +dnl testing bash tools path dnl *************************************** -if test "$_os" = "WINNT"; then - AC_PATH_PROG(CYGWIN, bash) - CYGWIN=`dirname $CYGWIN` -fi +AC_PATH_PROG(CYGWIN, bash) +CYGWIN=`dirname $CYGWIN` + dnl *************************************** dnl testing ml.exe assembler path dnl *************************************** -if test "$_os" = "WINNT"; then if test ! -x "$with_asm_home/ml.exe"; then AC_PATH_PROG(ML_EXE, ml.exe) if test -z "$ML_EXE"; then @@ -883,9 +881,7 @@ if test ! -x "$with_asm_home/ml.exe"; then with_asm_home="ASM_IN_PATH" fi fi -else - with_asm_home="NO_ASM_HOME" -fi + dnl =================================================================== dnl Setting up the environment. dnl =================================================================== |