From 1dc2811509ed1be4f3f4fe9cd7b2d1d65a87f3ba Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Thu, 9 Feb 2012 03:24:03 +0000 Subject: [PATCH] fix typo in previous commit --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index b4058cca..08e14a50 100644 --- a/SConstruct +++ b/SConstruct @@ -51,7 +51,8 @@ if os.environ.has_key('WINDRES'): env.Replace(WINDRES = os.environ['WINDRES']) if os.environ.has_key('CFLAGS'): env.Append(CCFLAGS = os.environ['CFLAGS'].split()) -# Uncomment the next two lines if you would like to use the $LDFLAG variable from the environment +# Uncomment the next two lines if you would like to use the $LDFLAGS +# variable from the environment #if os.environ.has_key('LDFLAGS'): # env.Append(LINKFLAGS = os.environ['LDFLAGS'].split())