mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-22 19:31:19 +00:00
Really include font patch
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/freeze-0_9_6@21203 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d13d8ea8db
commit
7c3a46821b
2 changed files with 8 additions and 3 deletions
|
@ -34,14 +34,15 @@
|
|||
|
||||
# Things to do after installing
|
||||
after-install::
|
||||
mkdir -p $(GNUSTEP_INSTALLATION_DIR)/$(back-resources_RESOURCE_FILES_INSTALL_DIR)
|
||||
for file in $(FONT_INSTALL_FILES); do \
|
||||
($(TAR) cfX - $(GNUSTEP_MAKEFILES)/tar-exclude-list $$file) | (cd $(GNUSTEP_SYSTEM_ROOT)/$(back-resources_RESOURCE_FILES_INSTALL_DIR); $(TAR) xf -) ;\
|
||||
($(TAR) cfX - $(GNUSTEP_MAKEFILES)/tar-exclude-list $$file) | (cd $(GNUSTEP_INSTALLATION_DIR)/$(back-resources_RESOURCE_FILES_INSTALL_DIR); $(TAR) xf -) ;\
|
||||
done
|
||||
|
||||
# Things to do before uninstalling
|
||||
before-uninstall::
|
||||
for file in $(FONT_INSTALL_FILES); do \
|
||||
rm -rf $(GNUSTEP_SYSTEM_ROOT)/$(back-resources_RESOURCE_FILES_INSTALL_DIR)/$$file;\
|
||||
rm -rf $(GNUSTEP_INSTALLATION_DIR)/$(back-resources_RESOURCE_FILES_INSTALL_DIR)/$$file;\
|
||||
done
|
||||
|
||||
# Things to do after uninstalling
|
||||
|
|
|
@ -40,7 +40,11 @@ include ./Version
|
|||
#
|
||||
# The list of subproject directories
|
||||
#
|
||||
SUBPROJECTS = Source Fonts Tools
|
||||
SUBPROJECTS = Source Tools
|
||||
|
||||
ifneq ($(fonts), no)
|
||||
SUBPROJECTS += Fonts
|
||||
endif
|
||||
|
||||
-include GNUmakefile.preamble
|
||||
|
||||
|
|
Loading…
Reference in a new issue