From f9a87218a8ce35b7e4661e242080d7eea4c574f1 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 30 Jan 2012 13:49:20 +0000 Subject: [PATCH] autogen.sh: pass params to configure This fixes the case when somebody may want to specify a different prefix than the default (/usr/local), for instance just /usr, via "--prefix=/usr". --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 9df38d3..5e7552f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,7 +8,7 @@ autoreconf --verbose --force --install --make || { exit 1; } -./configure || { +./configure $@ || { echo 'configure failed'; exit 1; }