On 5 April 2014 15:25, Michael Tokarev <m...@tls.msk.ru> wrote: > When installing modules (when --enable-modules is specified for > ./configure), Makefile uses the following construct to replace all > slashes with dashes in module name: > > ${s//\//-} > > This is a bash-specific substitution mechanism. POSIX does not > have it, and some operating systems (for example Debian) does not > implement this construct in default shell (for example dash). > > Use more traditional way to perform the substitution: use `tr' tool. > > > Signed-off-By: Michael Tokarev <m...@tls.msk.ru>
Applied to master, thanks. -- PMM