diff --git a/src/configure b/src/configure index 7f3ef96c..9e5b7aac 100755 --- a/src/configure +++ b/src/configure @@ -1862,17 +1862,23 @@ ac_config_headers="$ac_config_headers common/autoconfig.h" -sys=`uname` -if test -f mk/$sys ; then - (cd mk; rm -f sysconf; ln -s $sys sysconf) -else - cat <&5 +$as_echo "$as_me: + No system configuration file found in mk/ for uname = '$sys'. + Trying with Default file. + If the build fails, you'll need to write a configuration file, starting + from one of the existing ones." >&6;} + + sys=Default fi +(cd mk; rm -f sysconf; ln -s $sys sysconf) ac_ext=c ac_cpp='$CPP $CPPFLAGS' diff --git a/src/configure.ac b/src/configure.ac index b8110480..047b0210 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -3,17 +3,18 @@ AC_CONFIG_HEADERS([common/autoconfig.h]) AC_PREREQ(2.53) AC_CONFIG_SRCDIR(index/recollindex.cpp) -sys=`uname` -if test -f mk/$sys ; then - (cd mk; rm -f sysconf; ln -s $sys sysconf) -else - cat <