summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikram Narayanan <vikram186@gmail.com>2012-02-18 20:53:56 +0530
committerTakashi Iwai <tiwai@suse.de>2012-02-20 15:35:07 +0100
commitcefe6f2a4904c9be6c57164b831b4dfb9aa33ec0 (patch)
tree715b8c8a6e7a7a0a0bc67b2267440b1491ce5f0b
parentd5b6ecbbd63e39acdfd1404f0085ad16a1942f19 (diff)
downloadalsa-utils-cefe6f2a4904c9be6c57164b831b4dfb9aa33ec0.tar.gz
Remove the cvscompile file
package: alsa-utils Removed the cvscompile file. Signed-off-by: Vikram Narayanan <vikram186@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rwxr-xr-xcvscompile25
1 files changed, 0 insertions, 25 deletions
diff --git a/cvscompile b/cvscompile
deleted file mode 100755
index 64ade4f..0000000
--- a/cvscompile
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-if test -d ../alsa-lib/utils && ! test -r `aclocal --print-ac-dir`/alsa.m4; then
- alsa_m4_flags="-I ../alsa-lib/utils"
-fi
-aclocal $alsa_m4_flags $ACLOCAL_FLAGS
-# save original files to avoid stupid modifications by gettextize
-cp Makefile.am Makefile.am.ok
-cp configure.in configure.in.ok
-gettextize -c -f --no-changelog
-echo "EXTRA_DIST = gettext.m4" > m4/Makefile.am
-cp Makefile.am.ok Makefile.am
-cp configure.in.ok configure.in
-autoheader
-automake --foreign --copy --add-missing
-touch depcomp # for older automake
-autoconf
-export CFLAGS='-O2 -Wall -pipe -g'
-echo "CFLAGS=$CFLAGS"
-echo "./configure $@"
-./configure $@ || exit 1
-unset CFLAGS
-if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
- make
-fi