diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/configure | 8 |
1 files changed, 4 insertions, 4 deletions
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 ;; |