diff -ru gnustep-back-0.9.5.orig/Fonts/GNUmakefile.postamble gnustep-back-0.9.5/Fonts/GNUmakefile.postamble --- gnustep-back-0.9.5.orig/Fonts/GNUmakefile.postamble 2005-02-23 04:47:34.000000000 +0100 +++ gnustep-back-0.9.5/Fonts/GNUmakefile.postamble 2005-04-20 14:38:31.279114632 +0200 @@ -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 diff -ru gnustep-back-0.9.5.orig/GNUmakefile gnustep-back-0.9.5/GNUmakefile --- gnustep-back-0.9.5.orig/GNUmakefile 2005-02-23 04:47:34.000000000 +0100 +++ gnustep-back-0.9.5/GNUmakefile 2005-04-20 14:44:48.236808352 +0200 @@ -40,7 +40,11 @@ # # The list of subproject directories # -SUBPROJECTS = Source Fonts Tools +SUBPROJECTS = Source Tools + +ifneq ($(fonts), no) +SUBPROJECTS += Fonts +endif -include GNUmakefile.preamble