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:
Adam Fedor 2005-05-09 03:56:00 +00:00
parent d13d8ea8db
commit 7c3a46821b
2 changed files with 8 additions and 3 deletions

View file

@ -34,14 +34,15 @@
# Things to do after installing # Things to do after installing
after-install:: after-install::
mkdir -p $(GNUSTEP_INSTALLATION_DIR)/$(back-resources_RESOURCE_FILES_INSTALL_DIR)
for file in $(FONT_INSTALL_FILES); do \ 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 done
# Things to do before uninstalling # Things to do before uninstalling
before-uninstall:: before-uninstall::
for file in $(FONT_INSTALL_FILES); do \ 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 done
# Things to do after uninstalling # Things to do after uninstalling

View file

@ -40,7 +40,11 @@ include ./Version
# #
# The list of subproject directories # The list of subproject directories
# #
SUBPROJECTS = Source Fonts Tools SUBPROJECTS = Source Tools
ifneq ($(fonts), no)
SUBPROJECTS += Fonts
endif
-include GNUmakefile.preamble -include GNUmakefile.preamble