diff options
-rw-r--r-- | src/gui/wscript | 3 | ||||
-rw-r--r-- | wscript | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/wscript b/src/gui/wscript index 8e6bf344..c6cc4e7a 100644 --- a/src/gui/wscript +++ b/src/gui/wscript @@ -1,5 +1,6 @@ #!/usr/bin/env python import autowaf +import Utils def build(bld): # Headers @@ -70,5 +71,5 @@ def build(bld): source = 'ingen_gui.glade', target = '../../ingen_gui.glade', install_path = '${DATADIR}/ingen', - chmod = 0755, + chmod = Utils.O755, INGEN_VERSION = bld.env['INGEN_VERSION']) @@ -111,7 +111,7 @@ def configure(conf): autowaf.display_msg(conf, "HTTP", str(conf.env['HAVE_SOUP'] == 1)) autowaf.display_msg(conf, "LV2", str(conf.env['HAVE_SLV2'] == 1)) autowaf.display_msg(conf, "GUI", str(conf.env['INGEN_BUILD_GUI'] == 1)) - print + print() def build(bld): opts = Options.options |