From 5bfbde1e5a6b70724d1289efd3eca7086b6b9753 Mon Sep 17 00:00:00 2001 From: Wolfgang Lux Date: Fri, 14 Feb 2025 17:25:16 +0100 Subject: [PATCH] Don't install CoreFoundation header when installing base additions on macOS --- ChangeLog | 6 ++++++ Source/Makefile.postamble | 2 ++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1512e85c2..89bacbd3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-02-14 Wolfgang Lux + + * Source/Makefile.postamble (after-install): + Don't install CoreFoundation header when installing base additions + on macOS. + 2025-01-14 Richard Frith-Macdonald * Headers/GNUstepBase/NSURL+GNUstepBase.h: diff --git a/Source/Makefile.postamble b/Source/Makefile.postamble index e3671cc39..c41042e48 100644 --- a/Source/Makefile.postamble +++ b/Source/Makefile.postamble @@ -56,11 +56,13 @@ after-install:: done endif after-install:: +ifneq ($(base),no) $(MKDIRS) $(GNUSTEP_HEADERS)/CoreFoundation for file in $(COREFOUNDATION_HEADERS); do \ $(INSTALL_DATA) ../Headers/CoreFoundation/$$file \ $(GNUSTEP_HEADERS)/CoreFoundation/$$file ; \ done +endif $(MKDIRS) $(GNUSTEP_HEADERS)/GNUstepBase for file in $(GNUSTEPBASE_HEADERS); do \ $(INSTALL_DATA) ../Headers/GNUstepBase/$$file \