diff options
| author | Glenn Morris | 2007-09-12 06:55:36 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-09-12 06:55:36 +0000 |
| commit | cd227ad147d601ab234f51fadb53425fabbf6f68 (patch) | |
| tree | 7ad014f3c3c755792658a514d157243f48911154 | |
| parent | 585732304315fb193178f945a02f6bd64754ece0 (diff) | |
| download | emacs-cd227ad147d601ab234f51fadb53425fabbf6f68.tar.gz emacs-cd227ad147d601ab234f51fadb53425fabbf6f68.zip | |
(SOURCES, unlock, relock): Delete.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 45 |
2 files changed, 4 insertions, 45 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-09-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (SOURCES, unlock, relock): Delete. | ||
| 4 | |||
| 1 | 2007-09-09 Juri Linkov <juri@jurta.org> | 5 | 2007-09-09 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc). | 7 | * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc). |
diff --git a/Makefile.in b/Makefile.in index 66cc0f342ca..dc32128e7c1 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -708,51 +708,6 @@ extraclean: | |||
| 708 | -rm -f config-tmp-* | 708 | -rm -f config-tmp-* |
| 709 | -rm -f *~ \#* | 709 | -rm -f *~ \#* |
| 710 | 710 | ||
| 711 | ### Unlocking and relocking. The idea of these productions is to reduce | ||
| 712 | ### hassles when installing an incremental tar of Emacs. Do `make unlock' | ||
| 713 | ### before unlocking the file to take the write locks off all sources so | ||
| 714 | ### that tar xvof will overwrite them without fuss. Then do `make relock' | ||
| 715 | ### afterward so that VC mode will know which files should be checked in | ||
| 716 | ### if you want to mung them. | ||
| 717 | ### | ||
| 718 | ### Note: it's no disaster if these productions miss a file or two; tar | ||
| 719 | ### and VC will swiftly let you know if this happens, and it is easily | ||
| 720 | ### corrected. | ||
| 721 | SOURCES = ChangeLog FTP INSTALL Makefile.in \ | ||
| 722 | README configure make-dist move-if-change | ||
| 723 | |||
| 724 | .PHONY: unlock relock | ||
| 725 | |||
| 726 | unlock: | ||
| 727 | chmod u+w $(SOURCES) | ||
| 728 | -(cd elisp; chmod u+w Makefile README *.texi) | ||
| 729 | (cd etc; $(MAKE) $(MFLAGS) unlock) | ||
| 730 | (cd lib-src; $(MAKE) $(MFLAGS) unlock) | ||
| 731 | (cd lisp; $(MAKE) $(MFLAGS) unlock) | ||
| 732 | (cd lisp/term; chmod u+w README *.el) | ||
| 733 | (cd doc/emacs; chmod u+w *.texi ChangeLog) | ||
| 734 | (cd doc/misc; chmod u+w *.texi ChangeLog) | ||
| 735 | (cd doc/lispref; chmod u+w *texi* ChangeLog) | ||
| 736 | (cd doc/lispintro; chmod u+w *texi* ChangeLog) | ||
| 737 | (cd oldXMenu; chmod u+w *.[ch] Makefile README) | ||
| 738 | (cd lwlib; chmod u+w *.[ch] Makefile README) | ||
| 739 | (cd src; $(MAKE) $(MFLAGS) unlock) | ||
| 740 | |||
| 741 | relock: | ||
| 742 | chmod u-w $(SOURCES) | ||
| 743 | -(cd elisp; chmod u-w Makefile README *.texi) | ||
| 744 | (cd etc; $(MAKE) $(MFLAGS) relock) | ||
| 745 | (cd lib-src; $(MAKE) $(MFLAGS) relock) | ||
| 746 | (cd lisp; $(MAKE) $(MFLAGS) relock) | ||
| 747 | (cd lisp/term; chmod u-w README *.el) | ||
| 748 | (cd doc/emacs; chmod u-w *.texi ChangeLog) | ||
| 749 | (cd doc/misc; chmod u-w *.texi ChangeLog) | ||
| 750 | (cd doc/lispref; chmod u-w *texi* ChangeLog) | ||
| 751 | (cd doc/lispintro; chmod u-w *texi* ChangeLog) | ||
| 752 | (cd oldXMenu; chmod u-w *.[ch] Makefile README) | ||
| 753 | (cd lwlib; chmod u-w *.[ch] Makefile README) | ||
| 754 | (cd src; $(MAKE) $(MFLAGS) relock) | ||
| 755 | |||
| 756 | # The src subdir knows how to do the right thing | 711 | # The src subdir knows how to do the right thing |
| 757 | # even when the build directory and source dir are different. | 712 | # even when the build directory and source dir are different. |
| 758 | TAGS tags: lib-src src | 713 | TAGS tags: lib-src src |