From 6c266c9c9e7b0ac1a35b05fbdeddbc330e4c5f43 Mon Sep 17 00:00:00 2001 From: Piotr Kubaj Date: Wed, 7 Sep 2022 23:04:06 +0200 Subject: graphics/tesseract: fix build when building from ports PR: 265091 Submitted by: junchoon@dec.sakura.ne.jp --- graphics/tesseract/files/patch-configure.ac | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 graphics/tesseract/files/patch-configure.ac diff --git a/graphics/tesseract/files/patch-configure.ac b/graphics/tesseract/files/patch-configure.ac new file mode 100644 index 000000000000..bd46dd15245d --- /dev/null +++ b/graphics/tesseract/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig ++++ configure.ac +@@ -7,7 +7,7 @@ + # ---------------------------------------- + AC_PREREQ([2.69]) + AC_INIT([tesseract], +- [m4_esyscmd_s([git describe --abbrev=4 2>/dev/null || cat VERSION])], ++ [m4_esyscmd_s([test -d .git && git describe --abbrev=4 || cat VERSION])], + [https://github.com/tesseract-ocr/tesseract/issues],, + [https://github.com/tesseract-ocr/tesseract/]) + -- cgit v1.2.3