summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-27 05:35:58 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-27 05:35:58 +0000
commit23910221d847c73858caba178292693ae066f5be (patch)
treee9e90b07517a0af4e9386ed0aec8dcf6c588a885 /Makefile.in
parenteb3b510dfa4cb718c7d8235e2456927d614279b8 (diff)
downloadquilt-23910221d847c73858caba178292693ae066f5be.tar.gz
- Stop using bash <(...) process substitution: it triggers bugs
on some platforms. - In source tree compat/ "virtual symlink" scripts, exec the target binary instead of only calling it.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 283cf88..8f15ad4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -280,7 +280,7 @@ compat :: $(COMPAT)
# Usage: $(call VIRTUAL_SYMLINK, source, target)
define VIRTUAL_SYMLINK
@echo "Generating $(strip $(1)) wrapper" >&2;
- @printf "#!%s\n%s "'"$$$$@"'"\n" $(BASH) $(strip $(1)) > $(2);
+ @printf "#!%s\nexec %s "'"$$$$@"'"\n" $(BASH) $(strip $(1)) > $(2);
endef
# Generate rules to create compat/<binary> for each binary in $(COMPAT_SYMLINKS)