diff options
author | raveit65 <[email protected]> | 2019-07-17 12:08:00 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-17 12:08:00 +0200 |
commit | cdd098013a810ccd8b8baeef3110676f87da1fa9 (patch) | |
tree | 4dafcc7e3c50c04b3df8e865cd782a06cd791ec0 | |
parent | 7841131803aa8a4efb66ad291cf57505f309dc89 (diff) | |
download | pluma-cdd098013a810ccd8b8baeef3110676f87da1fa9.tar.bz2 pluma-cdd098013a810ccd8b8baeef3110676f87da1fa9.tar.xz |
fix build error when gla11y is not installed
-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: |