From 8edeb72a0fb15418ae4d7d53c51f6d362ec4b39c Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 10 Nov 2015 16:59:14 +0100 Subject: [PATCH] Fix relative prefix enabling when using the --package option of prepare.py. --- prepare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.py b/prepare.py index 54fa4bfd5..ea1fef78e 100755 --- a/prepare.py +++ b/prepare.py @@ -199,7 +199,7 @@ def main(argv=None): "-DENABLE_SILK=YES"] if args.package: - additional_args += ["-DENABLE_PACKAGING=YES" + additional_args += ["-DENABLE_PACKAGING=YES", "-DENABLE_RELATIVE_PREFIX=YES"] if check_tools() != 0: return 1