mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Add a missing line continuation, and a missing END_ECHO.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16860 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e4e3d10550
commit
1e44ff016d
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2003-06-02 18:16 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Instance/Documentation/autogsdoc.make (internal-doc-install_):
|
||||
Add a missing "\" line continuation.
|
||||
|
||||
(internal-doc-uninstall_): Add an $(END_ECHO) to balance the
|
||||
echoing.
|
||||
|
||||
Mon Jun 2 10:21:11 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* GNUmakefile.in (install): Only create the symlink Makefiles -->
|
||||
|
|
|
@ -44,7 +44,7 @@ generate-autogsdoc: $(GNUSTEP_INSTANCE)
|
|||
$(AUTOGSDOC) $(INTERNAL_AGSDOCFLAGS) $(AGSDOC_FILES)
|
||||
|
||||
internal-doc-install_::
|
||||
$(ECHO_INSTALLING)rm -rf $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE)
|
||||
$(ECHO_INSTALLING)rm -rf $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE) \
|
||||
$(TAR) cf - $(GNUSTEP_INSTANCE) | \
|
||||
(cd $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR); $(TAR) xf -)$(END_ECHO)
|
||||
ifneq ($(CHOWN_TO),)
|
||||
|
@ -53,7 +53,7 @@ ifneq ($(CHOWN_TO),)
|
|||
endif
|
||||
|
||||
internal-doc-uninstall_::
|
||||
-$(ECHO_UNINSTALLING)rm -f $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE)
|
||||
-$(ECHO_UNINSTALLING)rm -f $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE)$(END_ECHO)
|
||||
|
||||
internal-doc-clean::
|
||||
-$(ECHO_NOTHING)rm -Rf $(GNUSTEP_INSTANCE)$(END_ECHO)
|
||||
|
|
Loading…
Reference in a new issue