Skip to content

Commit b2469f4

Browse files
committed
Use absolute paths
1 parent 5c65a08 commit b2469f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ function getFileModificationHistory(): array {
885885
* > As it stands, libxml2's Relax NG validator doesn't seem suitable for production.
886886
* cf. https://gitlab.gnome.org/GNOME/libxml2/-/issues/448
887887
*/
888-
$output = shell_exec('java -jar ./docbook/jing.jar ./docbook/docbook-v5.2-os/rng/docbookxi.rng .manual.xml');
888+
$output = shell_exec('java -jar ' . $srcdir . '/docbook/jing.jar ' . RNG_SCHEMA_FILE. ' ' . $acd['OUTPUT_FILENAME']);
889889
if ($output === null) {
890890
echo "Command failed do you have Java installed?";
891891
} else {

0 commit comments

Comments
 (0)