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 \