xqilla: Use append instead of extend (#6094)

This commit is contained in:
Michael Kuhn 2017-11-02 08:09:24 +01:00 committed by Massimiliano Culpo
parent 932068d725
commit 61ed583266

View File

@ -51,6 +51,6 @@ def configure_args(self):
'--with-pic'])
if '+debug' in self.spec:
args.extend('--enable-debug')
args.append('--enable-debug')
return args