Changeset: 8cb3b11915de for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8cb3b11915de Modified Files: configure.ag Branch: Mar2011 Log Message:
configure: try to warn if lockfile isn't found diffs (13 lines): diff --git a/configure.ag b/configure.ag --- a/configure.ag +++ b/configure.ag @@ -1401,6 +1401,9 @@ AC_CHECK_PROG(MV,mv,mv -f) AC_PROG_LN_S AC_CHECK_PROG(LOCKFILE,lockfile,lockfile -r 2,echo) +if test x"$LOCKFILE" = x"echo" ; then + AC_MSG_WARN([no lockfile found, please do NOT parallelise the build process!]) +fi AC_CHECK_PROGS(RPMBUILD,rpmbuild rpm) _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
