diff options
| author | Morris <seventhese@gmail.com> | 2016-05-30 13:00:10 +0800 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2016-09-06 14:53:43 -0400 |
| commit | 937503156b73626b0efa88913673d9f452d1f579 (patch) | |
| tree | e8bc0230bcedb68ecf2864b32bf4236f1ba7aff6 | |
| parent | 9249fc28491681a4ed3cd8aebeab4b37c8d1cae0 (diff) | |
| download | efi-boot-shim-937503156b73626b0efa88913673d9f452d1f579.tar.gz efi-boot-shim-937503156b73626b0efa88913673d9f452d1f579.zip | |
fix: filter objcopy version
see comments here:
https://github.com/rhinstaller/shim/commit/d9a4c912c0aa72905ca793b555dcb0afb33e3b30
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ LD = $(CROSS_COMPILE)ld OBJCOPY = $(CROSS_COMPILE)objcopy ARCH = $(shell $(CC) -dumpmachine | cut -f1 -d- | sed s,i[3456789]86,ia32,) -OBJCOPY_GTE224 = $(shell expr `$(OBJCOPY) --version |grep ^"GNU objcopy" | sed 's/^.version //g' | cut -f1-2 -d.` \>= 2.24) +OBJCOPY_GTE224 = $(shell expr `$(OBJCOPY) --version |grep ^"GNU objcopy" | sed 's/^.*\((.*)\|version\) //g' | cut -f1-2 -d.` \>= 2.24) SUBDIRS = Cryptlib lib |
