Don't install CoreFoundation header when installing base additions on macOS

This commit is contained in:
Wolfgang Lux 2025-02-14 17:25:16 +01:00
parent d1d5552dfb
commit 5bfbde1e5a
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2025-02-14 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/Makefile.postamble (after-install):
Don't install CoreFoundation header when installing base additions
on macOS.
2025-01-14 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/GNUstepBase/NSURL+GNUstepBase.h:

View file

@ -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 \