From: Jeff Squyres Date: Mon, 27 Jan 2014 14:50:58 +0000 (-0500) Subject: Run "make doc" before "make distcheck" in the nightly tarball script. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f0add98422f44eac5e8bf0ff6aa2075cbf507f0d;p=people%2Fandrewcoop%2Fhwloc.git Run "make doc" before "make distcheck" in the nightly tarball script. It is now necessary to have the docs built before running "make dist", so update the nightly script to do that. --- diff --git a/contrib/nightly/make_snapshot_tarball b/contrib/nightly/make_snapshot_tarball index f069caad..3adbc71e 100755 --- a/contrib/nightly/make_snapshot_tarball +++ b/contrib/nightly/make_snapshot_tarball @@ -10,7 +10,7 @@ # University of Stuttgart. All rights reserved. # Copyright (c) 2004-2005 The Regents of the University of California. # All rights reserved. -# Copyright © 2006-2013 Cisco Systems, Inc. All rights reserved. +# Copyright © 2006-2014 Cisco Systems, Inc. All rights reserved. # $COPYRIGHT$ # # Additional copyrights may follow @@ -216,6 +216,10 @@ do_command "./autogen.sh" # do config do_command "./configure" +# because of the doxygen setup, we now much run "make doc" before we +# run "make dist". +do_command "make doc" + # Do make distcheck (which will invoke config/distscript.csh to set # the right values in VERSION). distcheck does many things; we need # to ensure it doesn't pick up any other installs via LD_LIBRARY_PATH.