summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@slimlogic.co.uk>2009-09-29 23:48:19 +0200
committerTakashi Iwai <tiwai@suse.de>2009-09-30 08:21:29 +0200
commit81ac9f4d483ef3ab7c244cb82bede3bdc76bcbe2 (patch)
treefd94b5b0ced63b253590f85cd185a1a29dd18c63
parentda237814e7409b38baedab64d6b4b18928b32404 (diff)
downloadalsa-lib-81ac9f4d483ef3ab7c244cb82bede3bdc76bcbe2.tar.gz
cvscompile: Remove in favour of gitcompile.
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>
-rwxr-xr-xcvscompile19
1 files changed, 0 insertions, 19 deletions
diff --git a/cvscompile b/cvscompile
deleted file mode 100755
index af7700eb..00000000
--- a/cvscompile
+++ /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