From 984c1c1f9a02033fcf6e6bf3782868aa75118dd2 Mon Sep 17 00:00:00 2001 From: emma Date: Sun, 30 Jun 2024 21:21:02 -0600 Subject: [PATCH] Makefile: fixes portability issue --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 581d2a1..5e2c70d 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ PREFIX_N != (test -d $(PREFIX) && [ '-' != $(PREFIX) ] \ && CDPATH= cd -P -- $(PREFIX) && pwd -P) MANDIR != [ $(PREFIX_N) = / ] && printf '/usr/share/man\n' \ || printf '/share/man\n' -SYSEXITS != printf '\043include \n' | cpp -M - | sed 's/ /\n/g' \ +SYSEXITS != printf '\043include \n' | cpp -M - | tr ' ' '\n' \ | sed -n 's/sysexits\.h//p' || printf 'include\n' CC ?= cc