From: Sebastian Harl Date: Sun, 6 Jan 2008 19:11:29 +0000 (+0100) Subject: bindings/Makefile.am: Removed a bashism. X-Git-Tag: collectd-4.2.4~6 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=c190252c31ca4e3c4871120ae9d4288ae64ff053;p=collectd.git bindings/Makefile.am: Removed a bashism. Brace expansion using { and } is not defined by POSIX but rather a bash extension and should thus not be used for portability reasons. Signed-off-by: Sebastian Harl Signed-off-by: Florian Forster --- diff --git a/bindings/Makefile.am b/bindings/Makefile.am index 16872e88..8d37c746 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -17,8 +17,10 @@ perl/Makefile: .perl-directory-stamp perl/Makefile.PL perl/Collectd/Makefile.PL .perl-directory-stamp: if test ! -d perl; then \ mkdir -p perl/Collectd; \ - cp $(srcdir)/perl/{Collectd.pm,Makefile.PL} perl/; \ - cp $(srcdir)/perl/Collectd/{Unixsock.pm,Makefile.PL} perl/Collectd/; \ + cp $(srcdir)/perl/Collectd.pm perl/; \ + cp $(srcdir)/perl/Makefile.PL perl/; \ + cp $(srcdir)/perl/Collectd/Unixsock.pm perl/Collectd/; \ + cp $(srcdir)/perl/Collectd/Makefile.PL perl/Collectd/; \ fi touch $@