45
45
public class WorkAround {
46
46
// Each time this class is touched consider changing the String below to enforce
47
47
// updates
48
- private static final String FIRST_SLOEBER_WORKAROUND_LINE = "#Sloeber created TXT file V3.00.test 28 " ;
48
+ private static final String FIRST_SLOEBER_WORKAROUND_LINE = "#Sloeber created TXT file V3.00.test 25 " ;
49
49
50
50
private static Map <String , String > USB_replacers ;
51
51
@@ -351,9 +351,9 @@ private static String platformApplyStandardWorkArounds(String inPlatformTxt) {
351
351
changed = changed + "{sloeber.extra.compile} {sloeber.extra.c.compile} {sloeber.extra.all}" ;
352
352
String codan = changed .replace (RECIPE_C_to_O , RECIPE_C_O_CODAN );
353
353
codan = codan .replace (" -o " , " " );
354
- codan = codan .replace (" {FLAGS} " , " " );
354
+ // codan = codan.replace(" {FLAGS} ", " ");
355
355
codan = codan .replace (" {OUTPUT} " , " " );
356
- codan = codan .replace (" {compiler.cpreprocessor.flags} " , " " );
356
+ // codan = codan.replace(" {compiler.cpreprocessor.flags} ", " ");
357
357
codan = codan .replace (" {INPUTS} " , DISCOVERY_PARAMETERS .replace ("${" , "{" ) + BLANK );
358
358
359
359
platformTXT = platformTXT .replace (origRecipe , changed + NEWLINE + codan );
@@ -368,9 +368,9 @@ private static String platformApplyStandardWorkArounds(String inPlatformTxt) {
368
368
changed = changed + "{sloeber.extra.compile} {sloeber.extra.cpp.compile} {sloeber.extra.all}" ;
369
369
String codan = changed .replace (RECIPE_CPP_to_O , RECIPE_CPP_O_CODAN );
370
370
codan = codan .replace (" -o " , " " );
371
- codan = codan .replace (" {FLAGS} " , " " );
371
+ // codan = codan.replace(" {FLAGS} ", " ");
372
372
codan = codan .replace (" {OUTPUT} " , " " );
373
- codan = codan .replace (" {compiler.cpreprocessor.flags} " , " " );
373
+ // codan = codan.replace(" {compiler.cpreprocessor.flags} ", " ");
374
374
codan = codan .replace (" {INPUTS} " , DISCOVERY_PARAMETERS .replace ("${" , "{" ) + BLANK );
375
375
376
376
platformTXT = platformTXT .replace (origRecipe , changed + NEWLINE + codan );
0 commit comments