Skip to content

Commit

Permalink
Add condition to check if CXXFLAGS variable is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
SaillantNicolas committed Aug 21, 2024
1 parent ce678a6 commit 35b5c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Maintenance/test_handling/to_zipped_format
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ sub reformat_results($)
# if (/BOOST_BIMAP_VERSION = '([^']+)'/) {
# $BOOST="$BOOST+bimap";
# }
if (/USING +CXXFLAGS = '([^']*)'/) {
if (/USING +CXXFLAGS = '([^']*)'/ && !$CXXFLAGS) {
$CXXFLAGS="$CXXFLAGS $1";
}
if (/USING +LDFLAGS = '([^']*)'/) {
Expand Down

0 comments on commit 35b5c08

Please sign in to comment.