summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2012-09-25 11:28:18 (GMT)
committerChristian Pointner <equinox@helsinki.at>2012-09-25 11:28:18 (GMT)
commita505cffcdd9645e1a4c3be302941e8a4a7d16037 (patch)
treed36d926a47de1299c7e1b781af39d261131e5079
parent9297e482f3a4404c08f66056a735e01dc72dcc65 (diff)
cleanup
-rw-r--r--README3
-rwxr-xr-xsrc/configure8
2 files changed, 7 insertions, 4 deletions
diff --git a/README b/README
index e76943a..25faa5a 100644
--- a/README
+++ b/README
@@ -17,6 +17,9 @@ core:
libgstreamer-plugins-base0.10-dev
pkg-config
+if you want to use clang as compiler
+ clang
+
if you want to rebuild the manpage:
asciidoc
diff --git a/src/configure b/src/configure
index ff09e73..feb9123 100755
--- a/src/configure
+++ b/src/configure
@@ -27,12 +27,12 @@ set -e
TARGET=`uname -s`
EBUILD_COMPAT=0
+USE_CLANG=0
PREFIX='/usr/local'
BINDIR=''
MANDIR=''
INSTALLMANPAGE=1
-USE_CLANG=0
print_usage() {
echo "configure --help print this"
@@ -59,12 +59,12 @@ do
--mandir=*)
MANDIR=${arg#--mandir=}
;;
- --no-manpage)
- INSTALLMANPAGE=0
- ;;
--use-clang)
USE_CLANG=1
;;
+ --no-manpage)
+ INSTALLMANPAGE=0
+ ;;
--ebuild-compat)
EBUILD_COMPAT=1
;;