diff options
author | Guido Guenther <agx@sigxcpu.org> | 2006-12-22 18:06:50 +0100 |
---|---|---|
committer | Guido Guenther <agx@bogon.sigxcpu.org> | 2006-12-22 18:06:50 +0100 |
commit | 356580c4b6332561d13b74cd5f37635e1559fa67 (patch) | |
tree | 53dff82e97b23f2d049149492ef8bae30b1fc3a2 | |
parent | 62af3b51357f13584f1c8901c088280599c9ba81 (diff) | |
download | git-buildpackage-356580c4b6332561d13b74cd5f37635e1559fa67.tar.gz git-buildpackage-356580c4b6332561d13b74cd5f37635e1559fa67.tar.bz2 git-buildpackage-356580c4b6332561d13b74cd5f37635e1559fa67.zip |
While dpkg-buildpackage's -i argument takes a regexp -I doesn'tdebian/0.2.21
fix inclusion of git metadata in debian native packages
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | git-buildpackage | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index b0556ae4..5b1d844c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +git-buildpackage (0.2.21) unstable; urgency=low + + * While dpkg-buildpackage's -i argument takes a regexp -I doesn't - fix + inclusion of git metadata in debian native packages + + -- Guido Guenther <agx@sigxcpu.org> Fri, 22 Dec 2006 17:59:49 +0100 + git-buildpackage (0.2.20) unstable; urgency=low * git-import-orig: improve error message when the upstream branch cannot be diff --git a/git-buildpackage b/git-buildpackage index a0744a3e..86baee7a 100755 --- a/git-buildpackage +++ b/git-buildpackage @@ -103,7 +103,7 @@ def main(argv): if not create_orig(cp, output_dir, options.upstream_branch): return 1 - Command(options.build_cmd, [ '-i\.git/', '-I\.git/' ] + dpkg_args)() + Command(options.build_cmd, [ '-i\.git/', '-I.git' ] + dpkg_args)() if options.tag: try: version=cp['Version'] |