From d947b3d62b2aa8d9e979f79814e28a8d460a132e Mon Sep 17 00:00:00 2001 From: Edison Su Date: Thu, 20 Sep 2012 17:50:36 -0700 Subject: [PATCH] change the deb build destination. By default, it's ../, which can be conflicted with other build in jenkins. Change the destination be selfcontained. --- debian/rules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 8458bfcd678..ff2920fa1e2 100755 --- a/debian/rules +++ b/debian/rules @@ -113,7 +113,8 @@ binary-common: # dh_shlibdeps dh_gencontrol dh_md5sums - dh_builddeb + mkdir -p ./artifacts/debs + dh_builddeb --destdir=$(CURDIR)/artifacts/debs # Build architecture independant packages using the common target. # binary-indep: build-indep install-indep # $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common