From e54b84fb02eb70237fc308582b0dadb1d237ca48 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 24 Oct 2014 10:09:11 +0200 Subject: controller/build: use configure --prefix=`pwd` The directory structure in this project is done so that you can run directly from dir (after ./build). * controller/build: Use --prefix="$(pwd)" instead of --with-git which was never implemented. --- controller/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'controller/build') diff --git a/controller/build b/controller/build index a57f1b9..60a17f1 100755 --- a/controller/build +++ b/controller/build @@ -5,7 +5,7 @@ if test ! -f Makefile; then autoreconf -vfi fi || exit 1 - ./configure --with-git + ./configure --prefix="$(pwd)" fi || exit 1 make -- cgit