aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2015-11-21 16:58:22 +0000
committerPeter Wu <peter@lekensteyn.nl>2015-11-21 17:11:20 +0000
commit65528108c3b583ca47c0987767ecedee5fd186ec (patch)
treee472d3900299292dda2dc4917facaa5d2456d551 /acinclude.m4
parent02fdea06de4590033a4997e19f6239efae6ea6ff (diff)
acinclude.m4: Replace AS_ECHO_N with printf
Quick fix for OSX build, AS_ECHO_N is not available for that autoconf version. Change-Id: I24a93622d15388ef84c0f099d1209052bb35856d Reviewed-on: https://code.wireshark.org/review/12013 Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index bb07a5071c..2a0caea975 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1911,7 +1911,7 @@ fi
AC_DEFUN([AC_WIRESHARK_GCC_SYSTEM_INCLUDE],
[
if test "x$GCC" = "xyes" -o "x$CC" = "xclang" ; then
- $1=`AS_ECHO_N([" $$1"]) \
+ $1=`printf %s " $$1" \
| sed -e 's/ *-I *\// -isystem\//g' -e 's/^ *//'`
fi
])