mirror of
https://github.com/gnustep/tools-make.git
synced 2025-06-02 18:21:07 +00:00
Fixed ingenuity in the way xxx_INSTALL_FILES were installed
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12679 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
27f019e788
commit
780ed4a339
1 changed files with 3 additions and 5 deletions
|
@ -345,10 +345,9 @@ $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR):
|
|||
$(MKINSTALLDIRS) $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)
|
||||
|
||||
# xxx_INSTALL_FILES
|
||||
ifneq ($($(GNUSTEP_INSTANCE)_INSTALL_FILES)$($(GNUSTEP_INSTANCE)_INSTALL_FILES),)
|
||||
ifneq ($($(GNUSTEP_INSTANCE)_INSTALL_FILES),)
|
||||
internal-doc-install::
|
||||
for file in $($(GNUSTEP_INSTANCE)_INSTALL_FILES) \
|
||||
$($(GNUSTEP_INSTANCE)_INSTALL_FILES) __done; do \
|
||||
for file in $($(GNUSTEP_INSTANCE)_INSTALL_FILES) __done; do \
|
||||
if [ $$file != __done ]; then \
|
||||
$(INSTALL_DATA) $$file \
|
||||
$(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$$file ; \
|
||||
|
@ -356,8 +355,7 @@ internal-doc-install::
|
|||
done
|
||||
|
||||
internal-doc-uninstall::
|
||||
for file in $($(GNUSTEP_INSTANCE)_INSTALL_FILES) \
|
||||
$($(GNUSTEP_INSTANCE)_INSTALL_FILES) __done; do \
|
||||
for file in $($(GNUSTEP_INSTANCE)_INSTALL_FILES) __done; do \
|
||||
if [ $$file != __done ]; then \
|
||||
rm -f $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$$file ; \
|
||||
fi; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue