[openssl-commits] [web] master update

Richard Levitte levitte at openssl.org
Thu Jan 14 15:16:28 UTC 2016


The branch master has been updated
       via  07b447eb2c49710f8eff97051b2a596e9b42c4e8 (commit)
      from  debe61b59d25f828428bda38cc86300ea7dc6d50 (commit)


- Log -----------------------------------------------------------------
commit 07b447eb2c49710f8eff97051b2a596e9b42c4e8
Author: Richard Levitte <levitte at openssl.org>
Date:   Thu Jan 14 16:16:20 2016 +0100

    Reduce relupd to what it's actually needed for
    
    With the help of git hooks, the checkout cache and web directory tree
    get updated (*) automagically whenever something relevant is pushed.
    All relupd is still needed for is to make sure the release manpages
    are being updated on release (we should refrain from doing so at any
    time something is pushed, because we do want the release manpages to
    correspond to the latest releases rather than whatever changes that's
    come later on).
    
    (*) in the web directory tree, "make" is also run automatically.

-----------------------------------------------------------------------

Summary of changes:
 Makefile | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/Makefile b/Makefile
index c2a245c..6446582 100644
--- a/Makefile
+++ b/Makefile
@@ -31,17 +31,7 @@ SRCLISTS = \
 
 all: $(SIMPLE) $(SRCLISTS) manmaster
 
-relupd: all
-	if [ "`id -un`" != openssl ]; then \
-	    echo "You must run this as 'openssl'" ; \
-	    echo "     sudo -u openssl -H make"; \
-	    exit 1; \
-	fi
-	cd $(CHECKOUTS) ; for dir in openssl* ; do \
-	    echo Updating $$dir ; ( cd $$dir ; git pull $(QUIET) ) ; \
-	done
-	git pull $(QUIET)
-	$(MAKE) all manpages
+relupd: all manpages
 
 define makemanpages
 	./bin/mk-manpages $(1) $(2) docs


More information about the openssl-commits mailing list