Skip to content

Commit

Permalink
configure: fix spaces trailing backslash
Browse files Browse the repository at this point in the history
Also make quoting more consistent with the lines above (quotes around
the variable assignments aren't really needed, but consistency is
good!).

Thanks Roze061
  • Loading branch information
Roze061 authored and davmac314 committed Sep 10, 2023
1 parent 698fb7c commit a6cff08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ if [ "$AUTO_TEST_LDFLAGS" = "true" ] && [ "$AUTO_TEST_CXXFLAGS" = "true" ]; then
LDFLAGS="$established_TEST_LDFLAGS" LDFLAGS_EXTRA="$TEST_LDFLAGS_EXTRA" \
try_cxx_argument TEST_CXXFLAGS -fsanitize=address,undefined
else
CXXFLAGS=$established_TEST_CXXFLAGS CXXFLAGS_EXTRA=$TEST_CXXFLAGS_EXTRA \
LDFLAGS=$established_TEST_LDFLAGS LDFLAGS_EXTRA=$TEST_LDFLAGS_EXTRA \
CXXFLAGS="$established_TEST_CXXFLAGS" CXXFLAGS_EXTRA="$TEST_CXXFLAGS_EXTRA" \
LDFLAGS="$established_TEST_LDFLAGS" LDFLAGS_EXTRA="$TEST_LDFLAGS_EXTRA" \
try_both_argument TEST_CXXFLAGS TEST_LDFLAGS -fsanitize=address,undefined
fi
fi
Expand Down

0 comments on commit a6cff08

Please sign in to comment.