Skip to content

Commit

Permalink
Correct configure pattern LDFLAGS setting
Browse files Browse the repository at this point in the history
Update LDFLAGS to use the intermediate flags and be set the same as
the other avx2 flags.

Signed-off-by: William Douglas <[email protected]>
  • Loading branch information
bryteise committed Jan 23, 2024
1 parent 1eaf8cd commit 6cca1f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autospec/specfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ def write_configure_pattern(self):
self._write_strip(f'CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS {AVX2_CFLAGS} {AVX2_LFLAGS} "')
self._write_strip(f'FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS {AVX2_CFLAGS} {AVX2_LFLAGS} "')
self._write_strip(f'FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS {AVX2_CFLAGS} "')
self._write_strip(f'LDFLAGS="$LDFLAGS {AVX2_CFLAGS} {AVX2_CFLAGS} "')
self._write_strip(f'LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS {AVX2_CFLAGS} "')
self._write_strip("%configure {0} {1} {2} "
.format(self.config.disable_static,
self.config.extra_configure,
Expand Down

0 comments on commit 6cca1f6

Please sign in to comment.