From 5cc5589b734a26d6c971c26a330371aedfe35f2c Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 5 Jul 2009 19:33:41 -0700 Subject: nasm.nsi: in the "NASM shell", put NASM first in PATH In the "NASM shell", it makes sense for NASM to be first in the PATH, not last. That way if the user has more than one version of NASM installed, and one of them is global, the "NASM shell" for any one version will still pick up the proper version. Signed-off-by: H. Peter Anvin --- nasm.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nasm.nsi') diff --git a/nasm.nsi b/nasm.nsi index 0e1d403..ae2e69b 100644 --- a/nasm.nsi +++ b/nasm.nsi @@ -65,7 +65,7 @@ Section "${PACKAGE_NAME}" File "rdoff/rdx.exe" FileOpen $0 "nasmpath.bat" w IfErrors skip - FileWrite $0 "@set path=%path%;$INSTDIR$\r$\n" + FileWrite $0 "@set path=$INSTDIR;%path%$\r$\n" FileWrite $0 "@%comspec%" FileClose $0 skip: -- cgit v1.2.3