diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2012-07-05 08:39:40 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2012-07-07 23:30:36 +0200 |
commit | aeca33f96c7928eab38eddfe8eead3acbd99f83f (patch) | |
tree | 511b580d9eef512241fde16f8159c61caf1c8e98 /winbuild/Makefile.vc | |
parent | 825fff880e4ac3f5ed1e8d089baa33fee227a792 (diff) | |
download | curl-aeca33f96c7928eab38eddfe8eead3acbd99f83f.tar.gz |
winbuild: Clean up formatting and variable naming
- Changed space usage to line up with the whole file
- Renamed CFLAGS_SSPI/IPV6 to SSPI/IPV6_CFLAGS to be
consistent with the other CFLAGS_x variables
- Make use of existing CFLAGS_IPV6 (previously IPV6_CFLAGS)
instead of appending directly to CFLAGS
Diffstat (limited to 'winbuild/Makefile.vc')
-rw-r--r-- | winbuild/Makefile.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winbuild/Makefile.vc b/winbuild/Makefile.vc index 59e29d6c1..0bccc9801 100644 --- a/winbuild/Makefile.vc +++ b/winbuild/Makefile.vc @@ -106,7 +106,7 @@ CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-debug CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-release
!ENDIF
-!IF "$(AS_DLL)" == "true"
+!IF "$(AS_DLL)"=="true"
CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-dll
!ELSE
CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-static
|