-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use -pie not -PIE in our linker config - Fix some overflow checks for gcc < 5.x - Make variable class probes other than the first one actually work - Move -flto to CFLAGS - Pack all of the efi device path headers - Fix redundant decl of efi_guid_zero() Signed-off-by: Peter Jones <[email protected]>
- Loading branch information
Showing
2 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = 28 | ||
VERSION = 29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ git config --unset user.email | |
git config --unset user.name | ||
|
||
%build | ||
make libdir=%{_libdir} bindir=%{_bindir} CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="$RPM_LD_FLAGS" | ||
make libdir=%{_libdir} bindir=%{_bindir} CFLAGS="$RPM_OPT_FLAGS -flto" LDFLAGS="$RPM_LD_FLAGS" | ||
|
||
%install | ||
rm -rf $RPM_BUILD_ROOT | ||
|
@@ -69,6 +69,14 @@ rm -rf $RPM_BUILD_ROOT | |
%{_libdir}/*.so.* | ||
|
||
%changelog | ||
* Tue Sep 27 2016 Peter Jones <[email protected]> - 29-1 | ||
- Use -pie not -PIE in our linker config | ||
- Fix some overflow checks for gcc < 5.x | ||
- Make variable class probes other than the first one actually work | ||
- Move -flto to CFLAGS | ||
- Pack all of the efi device path headers | ||
- Fix redundant decl of efi_guid_zero() | ||
|
||
* Wed Aug 17 2016 Peter Jones <[email protected]> - 28-1 | ||
- Make our sonames always lib$FOO.1 , not lib$FOO.$VERSION . | ||
|
||
|