shithub: opusfile

Download patch

ref: 0ad11587ac5bca65cdab325698c0636b4278f2c6
parent: 2effe9d32244064244cc849d2c46412e0d79e65d
author: Ralph Giles <giles@mozilla.com>
date: Wed Nov 7 10:03:59 EST 2012

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.

--- a/doc/git-version.sh
+++ b/doc/git-version.sh
@@ -10,4 +10,4 @@
   VERSION=${GIT_VERSION}
 fi
 
-echo -n ${VERSION}
+/bin/echo -n ${VERSION}