diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2021-03-23 23:27:57 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2021-03-23 23:27:57 (GMT) |
commit | 433dfe63579553edd962d2b8ec822d22e57a9905 (patch) | |
tree | c36b1b1f8743eaac08c2f3e5ff9b4f960f1d52b9 | |
parent | d59e5d1f0d7ba19c1fba16b3077f2f1cc590d00a (diff) |
Fix the configuration script.
-rw-r--r-- | configure.ac | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index d24320e..c2c3943 100644 --- a/configure.ac +++ b/configure.ac @@ -218,9 +218,13 @@ AC_ARG_WITH(gobject-leak-tracker, [track remaining GObject instances at exit (imply --enable-debug and GLib support) [default=no]]), [], [with_gobject_leak_tracker=no]) -AC_ARG_WITH(local-resources, +AC_ARG_WITH(desktop-dir, AS_HELP_STRING([--with-desktop-dir=PATH], - [specify to destination of desktop files (default=PREFIX/share)]), + [specify to destination of desktop files (default=PREFIX/share)])) + +AC_ARG_WITH(local-resources, + AS_HELP_STRING([--with-local-resources], + [define if built components located in the sources are used at runtime [default=no]]), [with_local_resources=yes], [with_local_resources=no]) #--- Small enumerations |