mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
Don't install CoreFoundation header when installing base additions on macOS
This commit is contained in:
parent
d1d5552dfb
commit
5bfbde1e5a
2 changed files with 8 additions and 0 deletions
|
@ -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>
|
2025-01-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Headers/GNUstepBase/NSURL+GNUstepBase.h:
|
* Headers/GNUstepBase/NSURL+GNUstepBase.h:
|
||||||
|
|
|
@ -56,11 +56,13 @@ after-install::
|
||||||
done
|
done
|
||||||
endif
|
endif
|
||||||
after-install::
|
after-install::
|
||||||
|
ifneq ($(base),no)
|
||||||
$(MKDIRS) $(GNUSTEP_HEADERS)/CoreFoundation
|
$(MKDIRS) $(GNUSTEP_HEADERS)/CoreFoundation
|
||||||
for file in $(COREFOUNDATION_HEADERS); do \
|
for file in $(COREFOUNDATION_HEADERS); do \
|
||||||
$(INSTALL_DATA) ../Headers/CoreFoundation/$$file \
|
$(INSTALL_DATA) ../Headers/CoreFoundation/$$file \
|
||||||
$(GNUSTEP_HEADERS)/CoreFoundation/$$file ; \
|
$(GNUSTEP_HEADERS)/CoreFoundation/$$file ; \
|
||||||
done
|
done
|
||||||
|
endif
|
||||||
$(MKDIRS) $(GNUSTEP_HEADERS)/GNUstepBase
|
$(MKDIRS) $(GNUSTEP_HEADERS)/GNUstepBase
|
||||||
for file in $(GNUSTEPBASE_HEADERS); do \
|
for file in $(GNUSTEPBASE_HEADERS); do \
|
||||||
$(INSTALL_DATA) ../Headers/GNUstepBase/$$file \
|
$(INSTALL_DATA) ../Headers/GNUstepBase/$$file \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue