summaryrefslogtreecommitdiffhomepage
path: root/gbp
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 /gbp
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 'gbp')
-rw-r--r--gbp/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/config.py b/gbp/config.py
index f670ad5e..8df9d353 100644
--- a/gbp/config.py
+++ b/gbp/config.py
@@ -25,7 +25,7 @@ class GbpOptionParser(OptionParser):
@cvar config_files: list of config files we parse
@type config_files: list
"""
- defaults = { 'builder' : 'debuild -i\.git/ -I.git',
+ defaults = { 'builder' : 'debuild -i -I',
'cleaner' : 'debuild -d clean',
'debian-branch' : 'master',
'upstream-branch' : 'upstream',