From b0f80132f38a152fd701e1baf9e6724d9408c3d7 Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Wed, 8 Mar 2017 09:09:27 +0000 Subject: [PATCH] Please make the build reproducible. Whilst working on the Reproducible Builds effort [0], we noticed that python-gdata could not be built reproducibly due to non-deterministic filesystem ordering. [0] https://reproducible-builds.org/ Signed-off-by: Chris Lamb --- pydocs/generate_docs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydocs/generate_docs b/pydocs/generate_docs index 94c63dda..b13138da 100755 --- a/pydocs/generate_docs +++ b/pydocs/generate_docs @@ -11,4 +11,4 @@ export GOOGLE_APPENGINE=/usr/local/google_appengine/ export PYTHONPATH=`pwd`/../src:$GOOGLE_APPENGINE -find ../src/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s#^\.\.\/src\/##" | sed "s#/#.#g" | xargs pydoc -w +find ../src/ -name "*.py" | sed "s/\/__init__.py//" | sed "s/\.py//" | sed "s#^\.\.\/src\/##" | sed "s#/#.#g" | LC_ALL=C sort | xargs pydoc -w