thom311 / libnl

Netlink Library Suite
GNU Lesser General Public License v2.1
419 stars 311 forks source link

Makefile.am: avoid use of non-portable echo arguments #360

Closed thesamesam closed 1 year ago

thesamesam commented 1 year ago

This fixes tests with a non-bash shell as /bin/sh (in this case, dash) which does not support echo -e. echo itself is portable, but not echo with any arguments.

Use printf instead.

thom311 commented 1 year ago

merged to main. Thank you!

thesamesam commented 1 year ago

Thanks!