Skip to content

Commit 102f4bd

Browse files
Dmitri Toubeliszimmerle
authored andcommitted
Make the configure step more reliable
Iyt appears that in cross compile environments the location of the "current" directory cannot be assumed. This fix makes it explicit.
1 parent fbea731 commit 102f4bd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
v3.x.y - YYYY-MMM-DD (to be released)
22
-------------------------------------
33

4+
- Use explicit path for cross-compile environments.
5+
[Issue #2485 - @dtoubelis]
46
- Fix: FILES variable does not use multipart part name for key
57
[Issue #2377 - @martinhsv]
68
- Replaces put with setenv in SetEnv action

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ AC_PROG_MAKE_SET
5555
# AX_CXX_COMPILE_STDCXX_11(,mandatory)
5656

5757
# Check for libinjection
58-
if ! test -f "others/libinjection/src/libinjection_html5.c"; then
58+
if ! test -f "${srcdir}/others/libinjection/src/libinjection_html5.c"; then
5959
AC_MSG_ERROR([\
6060
6161

0 commit comments

Comments
 (0)