remove configure script from main dir as it breaks debian packaging

This commit is contained in:
Chris Lee 2018-08-05 21:12:17 +00:00
parent cb137674e4
commit fb9da655df
2 changed files with 4 additions and 1 deletions

View file

@ -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)

View file

@ -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'