On 04.04.2015 05:26 PM, git-admin@x2go.org wrote:
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch feature/raspbian in repository buildscripts.
commit c8066d2fc06e5b4347ba5f787ce3ca29f02532ab Author: Mike DePaulo <mikedep333@gmail.com> Date: Sat Apr 4 11:26:16 2015 -0400
Use more consistent local variable names.
bin/build-deb-package | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/bin/build-deb-package b/bin/build-deb-package index 88d731d..2632644 100755 --- a/bin/build-deb-package +++ b/bin/build-deb-package @@ -320,13 +320,13 @@ build_packages() { [ "x${USE_SUDO}" != "xyes" ] && { [ "x${EXTRA_ARCHS_ONLY}" = "x" ] && { for arch in ${DEB_ARCHS_SUPPORTED}; do
Note that if you change the loop variable in the loop body, you'll also need to change it in the loop header (for l_ARCH in ${DEB_ARCHS_SUPPORTED}; do)
[...] for arch in ${DEB_ARCHS_SUPPORTED}; do
Same here.
- [...]
Mihai