Skip to content

Commit

Permalink
Merge pull request #367 from coq/fix-coq-makefile-sources-of
Browse files Browse the repository at this point in the history
coq_wrapper: pass COQBIN as the last argument
  • Loading branch information
MSoegtropIMC authored Sep 28, 2023
2 parents 9efe1bf + e309123 commit 49d35b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/snap/coq_wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export LD_LIBRARY_PATH="$COQSTUBLIBS:$LD_LIBRARY_PATH"
if [ "$SELF" == "bash" -o "$SELF" == "sh" ]; then # for debugging the snap
exec $SELF "$@"
elif [ "$SELF" == "coq_makefile" ]; then
exec $COQBIN/$SELF COQBIN = "$COQBIN/" "$@"
exec $COQBIN/$SELF "$@" COQBIN = "$COQBIN/"
else
exec $COQBIN/$SELF "$@"
fi
fi

0 comments on commit 49d35b0

Please sign in to comment.