From 3a412bb78a689b4145b6fd9de60b1a060cd82baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Wed, 16 Dec 1998 17:02:29 +0100 Subject: [PATCH] Got rid of eval, since quoting of quotes won't work with it. Rev: bin/smartlink:1.22 --- bin/smartlink | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/smartlink b/bin/smartlink index 7dabbb37e7..92220a1a9f 100755 --- a/bin/smartlink +++ b/bin/smartlink @@ -152,6 +152,11 @@ fi # ;; #esac +# exec $LINKER $LDOPTS # Used to be exec, but Digital-Unix's stupid sh has buggy variable-expansion. # /grubba -eval $LINKER $LDOPTS +# eval $LINKER $LDOPTS +# Used to be eval, but then quoting won't work. +# /grubba 1998-12-16 +$LINKER $LDOPTS +exit $? -- GitLab