|
From: <hp...@us...> - 2002-05-04 04:11:02
|
Update of /cvsroot/nasm/nasm
In directory usw-pr-cvs1:/tmp/cvs-serv26159
Modified Files:
ChangeLog nasm.c
Log Message:
Change the NASM environment variable to NASMOPT.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/nasm/nasm/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- ChangeLog 4 May 2002 03:57:52 -0000 1.4
+++ ChangeLog 4 May 2002 04:11:00 -0000 1.5
@@ -1,4 +1,7 @@
2002-05-03 H. Peter Anvin <hp...@zy...>
+ * (nasm.c): Change the NASM environment variable to NASMOPT.
+
+2002-05-03 H. Peter Anvin <hp...@zy...>
* (Makefile.in Mkfiles/*): use new version -> version.{h,mac}.
* (macros.pl): support multiple input files (standard.mac, version.mac).
* (standard.mac): use an explicit delimiter to end the TASM macros.
Index: nasm.c
===================================================================
RCS file: /cvsroot/nasm/nasm/nasm.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- nasm.c 30 Apr 2002 21:09:14 -0000 1.18
+++ nasm.c 4 May 2002 04:11:00 -0000 1.19
@@ -683,9 +683,9 @@
*inname = *outname = *listname = '\0';
/*
- * First, process the NASM environment variable.
+ * First, process the NASMOPT environment variable.
*/
- envreal = getenv("NASM");
+ envreal = getenv("NASMOPT");
arg = NULL;
if (envreal) {
envcopy = nasm_strdup(envreal);
|