From 85e4fc4306055656f0acab0052ae6da73bfbeb1f Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Wed, 24 Apr 2013 10:15:36 -0700 Subject: [PATCH] build: Makefile should respect configure --prefix Fixes a regression that got introduced in commit ddf4d1a. --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 4f6874453f..87b88e5593 100755 --- a/configure +++ b/configure @@ -656,6 +656,10 @@ config = { 'USE_XCODE': str(int(options.use_xcode or 0)), 'PYTHON': sys.executable, } + +if options.prefix: + config['PREFIX'] = options.prefix + config = '\n'.join(map('='.join, config.iteritems())) + '\n' write('config.mk',