summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: af763da)
raw | patch | inline | side by side (parent: af763da)
author | Sebastian Harl <sh@tokkee.org> | |
Sun, 6 Jan 2008 19:11:29 +0000 (20:11 +0100) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Wed, 9 Jan 2008 07:30:20 +0000 (08:30 +0100) |
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 <sh@tokkee.org>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
extension and should thus not be used for portability reasons.
Signed-off-by: Sebastian Harl <sh@tokkee.org>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
bindings/Makefile.am | patch | blob | history |
diff --git a/bindings/Makefile.am b/bindings/Makefile.am
index 16872e88e2159dd4b3db58cc72377a93ccc4f30d..8d37c74680fa8c3d16d4c3e0cdd989ebd8e302a2 100644 (file)
--- a/bindings/Makefile.am
+++ b/bindings/Makefile.am
.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 $@