aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-11-22 17:04:42 +0100
committerGuido Günther <agx@sigxcpu.org>2009-11-22 17:12:19 +0100
commit06059dfc4972ed641a669a817146af6d49253e48 (patch)
tree38bdfa2942f4dbda69252cd9c21da9d905d3c012 /examples
parentc5e41484150403547a1d0db8151b3a0d5bf6b80b (diff)
Make the default build command 3.x source format safe
Instead of passing "-i\.git/ -I.git" to debuild use "-i -I". This makes sure we use the default behaviour of dpkg-source. Closes: #553079
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/gbp-cowbuilder-sid2
-rwxr-xr-xexamples/gbp-pbuilder2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/gbp-cowbuilder-sid b/examples/gbp-cowbuilder-sid
index 4021f23c..02d51a14 100755
--- a/examples/gbp-cowbuilder-sid
+++ b/examples/gbp-cowbuilder-sid
@@ -31,7 +31,7 @@ case $ACTION in
pdebuild --configfile ${CONF} \
--pbuilder cowbuilder \
--buildresult ${GBP_BUILD_DIR}/.. \
- --debbuildopts "-i\.git/ -I.git $*" \
+ --debbuildopts "-i -I $*" \
-- $OPTS
;;
esac
diff --git a/examples/gbp-pbuilder b/examples/gbp-pbuilder
index bb1798e9..ad36237b 100755
--- a/examples/gbp-pbuilder
+++ b/examples/gbp-pbuilder
@@ -5,5 +5,5 @@
set -e
# pass all options to dpkg-buildpackage:
-pdebuild $PBUILDER_OPTS --debbuildopts "-i\.git/ -I.git $*"
+pdebuild $PBUILDER_OPTS --debbuildopts "-i -I $*"