>From 987348e19a9b2cab05666165d85b19d8eb06f0c3 Mon Sep 17 00:00:00 2001 From: Bastien Nocera <hadess@xxxxxxxxxx> Date: Wed, 24 Sep 2008 11:34:02 -0700 Subject: [PATCH] Fix building in a custom prefix We need to pass ACLOCAL_FLAGS to aclocal, otherwise it'll be ignored Patch from Michael Monreal <michael.monreal@xxxxxxx> --- bootstrap | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap index eeb7635..5def899 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #!/bin/sh -aclocal && \ +aclocal $ACLOCAL_FLAGS && \ autoheader && \ intltoolize --automake --copy --force && automake --add-missing --copy && \ -- 1.6.0.1