From fb9da655dfb036ef37751f91fb6213e426f5ee22 Mon Sep 17 00:00:00 2001 From: Chris Lee <@klee93> Date: Sun, 5 Aug 2018 21:12:17 +0000 Subject: [PATCH] remove configure script from main dir as it breaks debian packaging --- ChangeLog | 3 +++ configure => packaging/configure | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) rename configure => packaging/configure (99%) diff --git a/ChangeLog b/ChangeLog index 4b0c64c..3cd1af5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2018-08-05 master +- Fix packaging regression for debian (issue #715) + 2018-08-04 16.6 - Fix regression in task icon brightness (issue #714) diff --git a/configure b/packaging/configure similarity index 99% rename from configure rename to packaging/configure index 7b830a3..6cd7b49 100755 --- a/configure +++ b/packaging/configure @@ -240,7 +240,7 @@ LFLAGS = shlex.split(os.environ.get('LDFLAGS', '')) LIBS = [] # Get paths -source_dir = os.path.dirname(os.path.realpath(__file__)) +source_dir = os.path.realpath(os.path.dirname(os.path.realpath(__file__)) + '/..') build_dir = os.path.join(os.getcwd(), 'build') if not args.home: prefix = args.prefix or '/usr/local'