Skip to content

Commit f71b5f5

Browse files
borneoapaulfertser
authored andcommitted
configure.ac: fix check for jimtcl submodule
The file configure.ac checks if jimtcl submodule is present by looking for the file jimtcl/configure.ac . But jimtcl has switched to its own build system in 2011 and thus dropped configure.ac . This cause a build issue on OpenOCD that was incorrectly fixed by adding a dummy configure.ac in jimtcl. Fix OpenOCD configure.ac to look for the correct file jimtcl/configure . After this fix, another fix would be proposed to jimtcl to drop its useless dummy file configure.ac . Change-Id: I705f72d83e374c8dd700baaa0c0bbe041f153605 Signed-off-by: Antonio Borneo <[email protected]> Reported-by: Paul Fertser <[email protected]> Reviewed-on: https://review.openocd.org/c/openocd/+/7437 Tested-by: jenkins Reviewed-by: Paul Fertser <[email protected]>
1 parent d92ebb5 commit f71b5f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ AS_IF([test "x$enable_buspirate" != "xno"], [
574574
])
575575

576576
AS_IF([test "x$use_internal_jimtcl" = "xyes"], [
577-
AS_IF([test -f "$srcdir/jimtcl/configure.ac"], [
577+
AS_IF([test -f "$srcdir/jimtcl/configure"], [
578578
AS_IF([test "x$use_internal_jimtcl_maintainer" = "xyes"], [
579579
jimtcl_config_options="--disable-install-jim --with-ext=json --maintainer"
580580
], [

0 commit comments

Comments
 (0)