From 6f34fd179fff76649a0c19ff7ccea38d1b8718bb Mon Sep 17 00:00:00 2001 From: Gooberpatrol66 <5498361+Gooberpatrol66@users.noreply.github.com> Date: Mon, 16 Jul 2018 20:26:55 -0500 Subject: [PATCH] Update install-wrapped.sh Line 52 echoes DGPATH into wrapper scripts. When built in a sandbox, this breaks the dgsh programs after they have been moved out of the temporary build directory. Changed to fix. --- unix-tools/install-wrapped.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix-tools/install-wrapped.sh b/unix-tools/install-wrapped.sh index df71254..7660332 100755 --- a/unix-tools/install-wrapped.sh +++ b/unix-tools/install-wrapped.sh @@ -49,6 +49,6 @@ while read mode name ; do esac done target=$DGPATH/$name - echo "#!$DGPATH/dgsh-wrap$opt" >$target + echo "#!$PREFIX/libexec/dgsh/dgsh-wrap$opt" >$target chmod 755 $target done