Skip to content

Commit

Permalink
Switch to new GitHub official gnu-efi
Browse files Browse the repository at this point in the history
  • Loading branch information
pbatard committed May 16, 2024
1 parent eed6de8 commit c934691
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[submodule "gnu-efi"]
path = gnu-efi
url = https://github.com/pbatard/gnu-efi.git
ignore = dirty
url = https://github.com/ncroxon/gnu-efi.git
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ ifeq (, $(shell which $(CC)))
$(error The selected compiler ($(CC)) was not found)
endif

GCCVERSION := $(shell $(CC) -dumpversion | cut -f1 -d.)
GCCMINOR := $(shell $(CC) -dumpversion | cut -f2 -d.)
GCCVERSION := $(shell $(CC) -dumpversion | sed -e 's/-win32/.0/' | cut -f1 -d.)
GCCMINOR := $(shell $(CC) -dumpversion | sed -e 's/-win32/.0/' | cut -f2 -d.)
GCCMACHINE := $(shell $(CC) -dumpmachine)
GCCNEWENOUGH := $(shell ( [ $(GCCVERSION) -gt "4" ] \
|| ( [ $(GCCVERSION) -eq "4" ] \
Expand Down
2 changes: 1 addition & 1 deletion gnu-efi

0 comments on commit c934691

Please sign in to comment.