Skip to content
Snippets Groups Projects
Commit 0ad11587 authored by Ralph Giles's avatar Ralph Giles
Browse files

Use /bin/echo so -n works on osx.

The 'echo' built into /bin/sh on MacOS X doesn't support -n, which
confuses the AC_INIT macro. Use the separate binary which does.
parent 2effe9d3
No related branches found
No related tags found
No related merge requests found
......@@ -10,4 +10,4 @@ else
VERSION=${GIT_VERSION}
fi
echo -n ${VERSION}
/bin/echo -n ${VERSION}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment