diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-13 11:56:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-29 21:58:42 +0900 |
commit | 2879ff70be9271550477982a1a6371714db38562 (patch) | |
tree | c2054149dba923ab080fe7093432c7663a990111 /configure.in | |
parent | 3eb38d2556f676d1027746f20bf12a1dd74451ef (diff) | |
download | krecipes-2879ff70.tar.gz krecipes-2879ff70.zip |
Rearrange folders structure to remove unnecessary 'krecipes' second level subfolder
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/configure.in b/configure.in index 3664419..ca83dca 100644 --- a/configure.in +++ b/configure.in @@ -179,6 +179,7 @@ AM_CONDITIONAL(doc_SUBDIR_included, test "x$doc_SUBDIR_included" = xyes) AM_CONDITIONAL(krecipes_SUBDIR_included, test "x$krecipes_SUBDIR_included" = xyes) AM_CONDITIONAL(po_SUBDIR_included, test "x$po_SUBDIR_included" = xyes) AC_CONFIG_FILES([ Makefile ]) +AC_CONFIG_FILES([ data/Makefile ]) AC_CONFIG_FILES([ doc/Makefile ]) AC_CONFIG_FILES([ doc/da/Makefile ]) AC_CONFIG_FILES([ doc/en/Makefile ]) @@ -186,22 +187,20 @@ AC_CONFIG_FILES([ doc/es/Makefile ]) AC_CONFIG_FILES([ doc/et/Makefile ]) AC_CONFIG_FILES([ doc/pt/Makefile ]) AC_CONFIG_FILES([ doc/sv/Makefile ]) -AC_CONFIG_FILES([ krecipes/Makefile ]) -AC_CONFIG_FILES([ krecipes/data/Makefile ]) -AC_CONFIG_FILES([ krecipes/icons/Makefile ]) -AC_CONFIG_FILES([ krecipes/layouts/Makefile ]) -AC_CONFIG_FILES([ krecipes/pics/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/backends/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/backends/MySQL/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/backends/PostgreSQL/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/backends/SQLite/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/datablocks/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/dialogs/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/exporters/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/importers/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/tests/Makefile ]) -AC_CONFIG_FILES([ krecipes/src/widgets/Makefile ]) +AC_CONFIG_FILES([ icons/Makefile ]) +AC_CONFIG_FILES([ layouts/Makefile ]) +AC_CONFIG_FILES([ src/Makefile ]) +AC_CONFIG_FILES([ src/backends/Makefile ]) +AC_CONFIG_FILES([ src/backends/MySQL/Makefile ]) +AC_CONFIG_FILES([ src/backends/PostgreSQL/Makefile ]) +AC_CONFIG_FILES([ src/backends/SQLite/Makefile ]) +AC_CONFIG_FILES([ src/datablocks/Makefile ]) +AC_CONFIG_FILES([ src/dialogs/Makefile ]) +AC_CONFIG_FILES([ src/exporters/Makefile ]) +AC_CONFIG_FILES([ src/importers/Makefile ]) +AC_CONFIG_FILES([ src/tests/Makefile ]) +AC_CONFIG_FILES([ src/widgets/Makefile ]) +AC_CONFIG_FILES([ pics/Makefile ]) AC_CONFIG_FILES([ po/Makefile ]) AC_CONFIG_FILES([ po/az/Makefile ]) AC_CONFIG_FILES([ po/bg/Makefile ]) |