]> git.alsa-project.org Git - alsa-lib.git/commitdiff
cvscompile: Remove in favour of gitcompile.
authorStefan Schmidt <stefan@slimlogic.co.uk>
Tue, 29 Sep 2009 21:48:19 +0000 (23:48 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 30 Sep 2009 06:21:29 +0000 (08:21 +0200)
Alsa-lib is no longer hosted in cvs but in git and the only difference between
both helper scripts is the name of the NO_MAKE env VAR check.

Signed-off-by: Stefan Schmidt <stefan@slimlogic.co.uk>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
cvscompile [deleted file]

diff --git a/cvscompile b/cvscompile
deleted file mode 100755 (executable)
index af7700e..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-set -e
-
-touch ltconfig
-libtoolize --force --copy --automake
-aclocal $ACLOCAL_FLAGS
-autoheader
-automake --foreign --copy --add-missing
-touch depcomp          # seems to be missing for old automake
-autoconf
-export CFLAGS='-O2 -Wall -W -pipe -g'
-echo "CFLAGS=$CFLAGS"
-echo "./configure $@"
-./configure $@ || exit 1
-unset CFLAGS
-if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
-  make
-fi