[Rt-commit] rt branch, 4.0/remove-local-install-target, created. rt-4.0.10-119-g497e471
Thomas Sibley
trs at bestpractical.com
Tue Mar 19 13:39:42 EDT 2013
The branch, 4.0/remove-local-install-target has been created
at 497e471b34b13d5fb1c15fb7efcff39fc4f4aec8 (commit)
- Log -----------------------------------------------------------------
commit 497e471b34b13d5fb1c15fb7efcff39fc4f4aec8
Author: Thomas Sibley <trs at bestpractical.com>
Date: Tue Mar 19 10:27:22 2013 -0700
Remove the local-install Makefile target
The local-install target was added in 578192f, but there was never a
shipped set of local/{etc,html,po} directories to install from (as far
back as we can reasonably go in svn history). Thus the target always
errored out, although the errors were intentionally ignored. Creation
of the local/ hierarchy in /opt/rt4 is handled by the "dirs" target.
The best guess is that this supported bundling of customizations when
building custom tarballs. These days we have installable extensions.
diff --git a/Makefile.in b/Makefile.in
index 46905de..09ebab3 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -339,7 +339,7 @@ dirs:
install: testdeps config-install dirs files-install fixperms instruct
-files-install: libs-install etc-install config-install bin-install sbin-install html-install local-install doc-install font-install po-install
+files-install: libs-install etc-install config-install bin-install sbin-install html-install doc-install font-install po-install
config-install:
@COMMENT_INPLACE_LAYOUT@ $(INSTALL) -m 0755 -o $(BIN_OWNER) -g $(RTGROUP) -d $(DESTDIR)$(CONFIG_FILE_PATH)
@@ -442,25 +442,6 @@ bin-install:
@COMMENT_INPLACE_LAYOUT@ $(INSTALL) -o $(BIN_OWNER) -g $(RTGROUP) -m 0755 "bin/$$file" "$(DESTDIR)$(RT_BIN_PATH)/" ; \
@COMMENT_INPLACE_LAYOUT@ done
-local-install:
- -( cd local/html && find . -type d -print ) | while read dir ; do \
- $(INSTALL) -m 0755 -d "$(DESTDIR)$(MASON_LOCAL_HTML_PATH)/$$dir" ; \
- done
- -( cd local/html && find . -type f -print ) | while read file ; do \
- $(INSTALL) -m 0644 "local/html/$$file" "$(DESTDIR)$(MASON_LOCAL_HTML_PATH)/$$file" ; \
- done
- -( cd local/po && find . -type d -print ) | while read dir ; do \
- $(INSTALL) -m 0755 -d "$(DESTDIR)$(LOCAL_LEXICON_PATH)/$$dir" ; \
- done
- -( cd local/po && find . -type f -print ) | while read file ; do \
- $(INSTALL) -m 0644 "local/po/$$file" "$(DESTDIR)$(LOCAL_LEXICON_PATH)/$$file" ; \
- done
- -( cd local/etc && find . -type d -print ) | while read dir ; do \
- $(INSTALL) -m 0755 -d "$(DESTDIR)$(LOCAL_ETC_PATH)/$$dir" ; \
- done
- -( cd local/etc && find . -type f -print ) | while read file ; do \
- $(INSTALL) -m 0644 "etc/$$file" "$(DESTDIR)$(LOCAL_ETC_PATH)/$$file" ; \
- done
regenerate-catalogs:
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list