From 1af22580520a37c1566b33102b1f78c3fdc5232c Mon Sep 17 00:00:00 2001 From: nicola Date: Sun, 6 May 2007 13:25:06 +0000 Subject: [PATCH] Print help message then abort if someone tries to run configure (which they shouldn't do) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/libobjc/trunk@25125 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog.GNUstep | 6 ++++++ configure | 11 +++++++++++ 2 files changed, 17 insertions(+) diff --git a/ChangeLog.GNUstep b/ChangeLog.GNUstep index 35b6fae..1e4f1e2 100644 --- a/ChangeLog.GNUstep +++ b/ChangeLog.GNUstep @@ -1,3 +1,9 @@ +2007-05-06 Nicola Pero + + * configure: Added code at the very beginning to print an help + message and abort. Users who don't read the README.GNUstep + might otherwise try to run configure, messing everything up. + 2007-02-28 Nicola Pero * GNUmakefile (GNUSTEP_MAKEFILES): Use gnustep-config to diff --git a/configure b/configure index 1c04b71..7e373e9 100755 --- a/configure +++ b/configure @@ -1,4 +1,15 @@ #! /bin/sh + +echo "To compile this library, don't run the configure script. First edit the" +echo "GNUmakefile to set the type of threading you want, then type" +echo "" +echo "make" +echo "make install" +echo "" +echo "Please note that you need gnustep-make >= 2.0.0 to compile this library." + +exit 1 + # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for package-unused version-unused. #