diff options
author | Wu Xiaotian <[email protected]> | 2019-07-12 15:25:13 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-17 09:38:54 +0200 |
commit | 97802ed4fc65bf6cb7f7253ffc89ea683f595fa2 (patch) | |
tree | 0805db4d7f6ac063b6e6b50d8a0f11dac17bb540 /gla11y.mk | |
parent | 0f0f7ca9fe376bdd279c76588eb8e9ed69aeabcf (diff) | |
download | mate-control-center-97802ed4fc65bf6cb7f7253ffc89ea683f595fa2.tar.bz2 mate-control-center-97802ed4fc65bf6cb7f7253ffc89ea683f595fa2.tar.xz |
fix build error when not installed gla11y
Diffstat (limited to 'gla11y.mk')
-rw-r--r-- | gla11y.mk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,7 +10,9 @@ a11y_verbose_1 = all-local: $(GLA11Y_OUTPUT) $(GLA11Y_OUTPUT): $(ui_files) - $(a11y_verbose) python3 $(GLA11Y) -P $(srcdir)/ -f $(srcdir)/$(GLA11Y_FALSE) -s $(srcdir)/$(GLA11Y_SUPPR) -o $@ $(ui_files:%=$(srcdir)/%) + $(a11y_verbose) if [[ $(GLA11Y) == *gla11y ]]; then \ + python3 $(GLA11Y) -P $(srcdir)/ -f $(srcdir)/$(GLA11Y_FALSE) -s $(srcdir)/$(GLA11Y_SUPPR) -o $@ $(ui_files:%=$(srcdir)/%); \ + fi clean-local: clean-local-check clean-local-check: |