From 30fecc98f2b299799c6d7de3ed536cc2d7111c07 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Fri, 20 Jan 2006 01:47:31 +0000 Subject: - Tru64 /bin/sh complains when $(call ) is used without ; on each line of the define. --- Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile.in') 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/ 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 -- cgit