diff options
author | Michele Calgaro <[email protected]> | 2024-10-13 11:56:14 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-21 09:29:11 +0900 |
commit | 0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502 (patch) | |
tree | 10f9d3223f0a0904a0748a28ca44da52ee1092b7 /configure.in | |
parent | 7d5ba3180a82a0827c1fbd6dc93a2abf4f882c37 (diff) | |
download | krecipes-0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502.tar.gz krecipes-0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502.zip |
Rearrange folders structure to remove unnecessary 'krecipes' second level subfolder
Signed-off-by: Michele Calgaro <[email protected]>
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 ]) |