-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devkit: add RHEL support to patch and fix uname
Signed-off-by: Stewart X Addison <[email protected]>
- Loading branch information
Showing
3 changed files
with
36 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/make/devkit/Makefile b/make/devkit/Makefile | ||
index c85a7c21d29..8f69d23c325 100644 | ||
--- a/make/devkit/Makefile | ||
+++ b/make/devkit/Makefile | ||
@@ -58,7 +58,7 @@ | ||
COMMA := , | ||
|
||
os := $(shell uname -o) | ||
-cpu := $(shell uname -p) | ||
+cpu := $(shell uname -m) | ||
|
||
# Figure out what platform this is building on. | ||
me := $(cpu)-$(if $(findstring Linux,$(os)),linux-gnu) |
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
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