summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-20 01:47:31 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-20 01:47:31 +0000
commit30fecc98f2b299799c6d7de3ed536cc2d7111c07 (patch)
tree548e7badc31e6e642485fc2c9ca3416676780cd5 /Makefile.in
parent09c24af9bfa6084babdcd1a6066c812bc2d4b2d1 (diff)
downloadquilt-30fecc98f2b299799c6d7de3ed536cc2d7111c07.tar.gz
- Tru64 /bin/sh complains when $(call ) is used without ; on each
line of the define.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 4a41fc0..6e641af 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -259,17 +259,17 @@ compat :: $(COMPAT)
# symlinks as targets.
# Usage: $(call VIRTUAL_SYMLINK, source, target)
define VIRTUAL_SYMLINK
- @echo "Generating $(strip $(1)) wrapper" >&2
- @printf "#!%s\n%s "'"$$$$@"'"\n" $(BASH) $(strip $(1)) > $(2)
+ @echo "Generating $(strip $(1)) wrapper" >&2;
+ @printf "#!%s\n%s "'"$$$$@"'"\n" $(BASH) $(strip $(1)) > $(2);
endef
# Generate rules to create compat/<binary> for each binary in $(COMPAT_SYMLINKS)
define COMPAT_SYMLINK_local_install
compat/$(strip $(1)) : Makefile
$(call VIRTUAL_SYMLINK, \
- '$($(shell echo $(1) | $(AWK) '{print toupper($$1)}'))', \
+ $($(shell echo $(1) | $(AWK) '{print toupper($$1)}')), \
compat/$(strip $(1)))
- @chmod +x compat/$(strip $(1))
+ @chmod +x compat/$(strip $(1));
endef