From 4c18bff7edd529a4f65bdcbe5764d3fa799e73a0 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Fri, 7 Jun 2024 23:55:59 -0700 Subject: [PATCH] Makefile: Grok "OS/2" from uname --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 35b8294d2..fb2c33bab 100644 --- a/Makefile +++ b/Makefile @@ -60,8 +60,12 @@ else STDC_LIB:=-lstdc++.r4 endif else - OS:=linux - GPERF:=/usr/bin/gperf + ifeq ($(SYSNAME),OS/2) + OS:=os2 + else + OS:=linux + GPERF:=/usr/bin/gperf + endif endif endif endif