[openssl-commits] [web] master update
Rich Salz
rsalz at openssl.org
Thu Jan 8 17:13:00 UTC 2015
The branch master has been updated
via 90c9a7f255d693c0d8489dff0cec443b1fcc229c (commit)
from 21d6947dfff228310cc94eed18e4d62253a6fba9 (commit)
- Log -----------------------------------------------------------------
commit 90c9a7f255d693c0d8489dff0cec443b1fcc229c
Author: Rich Salz <rsalz at akamai.com>
Date: Thu Jan 8 12:12:46 2015 -0500
Add "make relupd" to replace the old script.
-----------------------------------------------------------------------
Summary of changes:
Makefile | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/Makefile b/Makefile
index 9bbca1a..f054394 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,7 @@ SNAP=/v/openssl/checkouts/openssl
PODSHOME=$(SNAP)/doc
FORCE=#-f
+QUIET=--quiet
DIRS= about docs news source support
@@ -27,3 +28,13 @@ generated:
perl run-faq.pl <$(SNAP)/FAQ >support/faq.inc
perl run-fundingfaq.pl < support/funding/support-faq.txt >support/funding/support-faq.inc
( cd news && xsltproc vulnerabilities.xsl vulnerabilities.xml > vulnerabilities.wml )
+
+# Update release notes (and other items, but relnotes is the use-case)
+relupd:
+ ( cd $(SNAP)/.. ; for dir in openssl* ; do \
+ echo Updating $$dir ; cd $$dir ; git pull $(QUIET) ; cd .. ; \
+ done )
+ git pull $(QUIET)
+ $(MAKE) simple
+
+
More information about the openssl-commits
mailing list