diff options
author | infirit <[email protected]> | 2014-01-28 15:42:31 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-01-28 15:42:31 +0100 |
commit | c927532dc37c1e2c86ded2cbec6f8fe3cfaf9866 (patch) | |
tree | 42526344dcd61dc4e14caae8671524de711f861c | |
parent | e0f3ca5b61ee407ca97a261e2b4aeb9533343f4f (diff) | |
download | mozo-c927532dc37c1e2c86ded2cbec6f8fe3cfaf9866.tar.bz2 mozo-c927532dc37c1e2c86ded2cbec6f8fe3cfaf9866.tar.xz |
Fix distcheck: part 2, add option to configure.acmate-menu-editor-1.6.11.6
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 164db54..b54ed04 100644 --- a/configure.ac +++ b/configure.ac @@ -67,6 +67,13 @@ dnl AC_MSG_RESULT(not found) dnl AC_MSG_ERROR(required pyglade version not found) dnl fi +AC_ARG_ENABLE(icon-update, AC_HELP_STRING([--disable-icon-update], + [Disable icon cache update])) +if (test "$enable_icon_update" != no); then + AC_PATH_PROG(UPDATE_ICON_CACHE, [gtk-update-icon-cache]) +fi +AM_CONDITIONAL([ICON_UPDATE], [test -n "$UPDATE_ICON_CACHE"]) + AC_CONFIG_FILES([ Makefile po/Makefile.in |