Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin/compile-archspec
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-02-21 12:43:42 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-02-21 12:43:42 (GMT)
commit2876869020584497e61a340d4ca3c4c8a8cbde7f (patch)
treebb83d328a70fa1e8470d954e8ed90d7bba422ae8 /bin/compile-archspec
parent9ac3745fbd4253caca810d607a6f230d2b3b341d (diff)
undoing pyalsaaudio patchv36
Diffstat (limited to 'bin/compile-archspec')
-rwxr-xr-xbin/compile-archspec16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/compile-archspec b/bin/compile-archspec
deleted file mode 100755
index 2a5a042..0000000
--- a/bin/compile-archspec
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-set -e
-
-archsrcdir="$1"
-archinstdir="$2"
-
-mkdir -p "${archinstdir}"
-cp -a "${archsrcdir}"/* "${archinstdir}"/
-cd "${archinstdir}"
-if [ -e configure ] ; then
- ./configure --prefix="${archinstdir}"
-fi
-
-make PREFIX="${archinstdir}"
-make install PREFIX="${archinstdir}"
-