diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-11-01 21:12:42 +0100 |
---|---|---|
committer | Volker Fischer <corrados@users.noreply.github.com> | 2023-01-01 16:20:40 +0100 |
commit | 28ce479e7300b46fa18fb9dc9e1b347c7cf6bed1 (patch) | |
tree | af6de9c02342b3bc217219e42aa7a0323270469e | |
parent | 4ef99150acbc92612a9aafbce7b6f73614ed63dc (diff) |
Fix autogen OBJCXX probe
-rwxr-xr-x | autogen.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -16,6 +16,7 @@ mkdir -p actest cat << EOF > actest/configure.ac AC_INIT([actest], [1.0.0]) AC_PROG_OBJCXX +AC_OUTPUT([]) EOF [ -f acinclude.m4 ] && rm acinclude.m4 autoreconf -W error actest 2>/dev/null || echo "AC_DEFUN([AC_PROG_OBJCXX],[echo ' - ObjC++ hack - not support by this platform, but not needed either.'])" > acinclude.m4 |