From 5d4fdec627379389501d268fd3c7b16c339e544e Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 27 Mar 2020 14:25:33 -0700 Subject: [PATCH] appveyor: add newlines when writing to CONFIG_SITE --- appveyor/do.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor/do.py b/appveyor/do.py index f468fa4..4494b04 100644 --- a/appveyor/do.py +++ b/appveyor/do.py @@ -390,13 +390,13 @@ def prepare(args): with open(os.path.join(places['EPICS_BASE'], 'configure', 'CONFIG_SITE'), 'a') as config_site: if re.search('static', os.environ['CONFIGURATION']): - config_site.write('SHARED_LIBRARIES=NO') - config_site.write('STATIC_BUILD=YES') + config_site.write('SHARED_LIBRARIES=NO\n') + config_site.write('STATIC_BUILD=YES\n') linktype = 'static' else: linktype = 'dynamic (DLL)' if re.search('debug', os.environ['CONFIGURATION']): - config_site.write('HOST_OPT=NO') + config_site.write('HOST_OPT=NO\n') optitype = 'debug' else: optitype = 'optimized'