move PHP utilities into the lib directory

These are not called directly as programs but used in a library
fashion by the installed utilities. So the library directory
is a better place.
This commit is contained in:
Sarah Hoffmann 2021-01-13 10:51:44 +01:00
parent d6bcb7c8b7
commit ff5a237200
10 changed files with 1 additions and 2 deletions

View File

@ -98,7 +98,6 @@ if (BUILD_IMPORTER)
set(CUSTOMSCRIPTS
check_import_finished.php
country_languages.php
importWikipedia.php
export.php
query.php
setup.php

View File

@ -6,4 +6,4 @@
@define('CONST_LibDir', '@CMAKE_SOURCE_DIR@/lib');
@define('CONST_DataDir', '@CMAKE_SOURCE_DIR@');
require_once(CONST_BinDir.'/@script_source@');
require_once(CONST_LibDir.'/admin/@script_source@');