mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:37:13 +08:00
27 lines
652 B
Diff
27 lines
652 B
Diff
|
From 2acf2e71a6ea4b4bf054b224482be6b5a0ba6f2c Mon Sep 17 00:00:00 2001
|
||
|
From: David McFarland <corngood@gmail.com>
|
||
|
Date: Sat, 8 Apr 2017 15:58:42 -0300
|
||
|
Subject: [PATCH 5/5] add archlinux as build option
|
||
|
|
||
|
---
|
||
|
Makefile | 3 +++
|
||
|
1 file changed, 3 insertions(+)
|
||
|
|
||
|
diff --git a/Makefile b/Makefile
|
||
|
index e8f360e..019b65d 100644
|
||
|
--- a/Makefile
|
||
|
+++ b/Makefile
|
||
|
@@ -24,6 +24,9 @@ else ifeq ("sled",$(OS_NAME))
|
||
|
subdir-ccflags-y += -DOS_NAME_SLE
|
||
|
else ifeq ("sles",$(OS_NAME))
|
||
|
subdir-ccflags-y += -DOS_NAME_SLE
|
||
|
+else ifeq ("arch",$(OS_NAME))
|
||
|
+subdir-ccflags-y += -DOS_NAME_ARCH
|
||
|
+OS_VERSION = "0.0"
|
||
|
else
|
||
|
subdir-ccflags-y += -DOS_NAME_UNKNOWN
|
||
|
endif
|
||
|
--
|
||
|
2.12.2
|
||
|
|