[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:45:59 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=1c5b147

The following commit has been merged in the master branch:
commit 1c5b1476d0bf496153debe7c6041a878efccb7f5
Author: Robin Mills <robin at clanmills.com>
Date:   Mon Dec 7 19:26:36 2015 +0000

    buildServer.  Don't call bash recursively on Cygwin as Windows10 can't allocate another stack.  Just call the script again.
---
 jenkins_build.sh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/jenkins_build.sh b/jenkins_build.sh
index 4b48db3..49db985 100755
--- a/jenkins_build.sh
+++ b/jenkins_build.sh
@@ -176,12 +176,14 @@ case "$build" in
         else
 			if [ "$x64" == true ]; then
 				export RECURSIVE=1
-				/cygdrive/c/cygwin64/bin/bash.exe -c "cd $PWD ; ./$0"
+				# /cygdrive/c/cygwin64/bin/bash.exe -c "cd $PWD ; ./$0"
+				cd "$PWD" ; ./$0
 				result=$?
 			fi
 			if [ "$Win32" == true ]; then
 				export RECURSIVE=1
-				/cygdrive/c/cygwin/bin/bash.exe -c "cd $PWD ; ./$0"
+				# /cygdrive/c/cygwin/bin/bash.exe -c "cd $PWD ; ./$0"
+				cd "$PWD" ; ./$0
 				result=$?
 			fi
         fi

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list