diff options
author | Guido Günther <agx@sigxcpu.org> | 2009-11-22 17:04:42 +0100 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2009-11-22 17:12:19 +0100 |
commit | 06059dfc4972ed641a669a817146af6d49253e48 (patch) | |
tree | 38bdfa2942f4dbda69252cd9c21da9d905d3c012 /examples | |
parent | c5e41484150403547a1d0db8151b3a0d5bf6b80b (diff) | |
download | git-buildpackage-06059dfc4972ed641a669a817146af6d49253e48.tar.gz git-buildpackage-06059dfc4972ed641a669a817146af6d49253e48.tar.bz2 git-buildpackage-06059dfc4972ed641a669a817146af6d49253e48.zip |
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-x | examples/gbp-cowbuilder-sid | 2 | ||||
-rwxr-xr-x | examples/gbp-pbuilder | 2 |
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 $*" |