1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

autogen.sh complains now if it's run outside cvs.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2580 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-03-11 04:54:57 +00:00 committed by cras
parent f3e124aeba
commit 8c67a92efb
2 changed files with 11 additions and 1 deletions

View File

@ -1,10 +1,20 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
PKG_NAME="Irssi"
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
PKG_NAME="Irssi"
if test ! -f $srcdir/irssi.cvs -a -f $srcdir/configure; then
echo
echo "Use ./configure instead"
echo
echo "This script should only be run if you got sources from CVS."
echo "If you really want to do this, say:"
echo " touch irssi.cvs"
exit 0
fi
if test ! -f $srcdir/configure.in; then
echo -n "**Error**: Directory \`$srcdir\' does not look like the"

0
irssi.cvs Normal file
View File