mypaint / libmypaint

libmypaint, a.k.a. "brushlib", is a library for making brushstrokes which is used by MyPaint and other projects.
http://mypaint.org
Other
307 stars 87 forks source link

autogen.sh: use printf instead of echo -n #152

Closed ryandesign closed 4 years ago

ryandesign commented 4 years ago

autogen.sh uses echo -n, which is not portable. On macOS, the result is output like this:

-n checking for libtool >= 1.5 ...
Major version might be too new (2.4.6)
-n checking for autoconf >= 2.62 ...
yes (version 2.69)
-n checking for automake >= 1.13 ...
yes (version 1.16.1)
-n checking for intltool >= 0.40.1 ...
yes (version 0.51.0)

You can fix this by using printf instead of echo -n.