Announcement

Collapse
No announcement yet.

Bug in dh_make

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Bug in dh_make

    I was just trying to create my own .deb and I have found the following bug in the dh_make script:

    Line 409: It's looking for /usr/bin/gizp (notice the spelling error) but gzip really exists in /bin/

    #2
    Re: Bug in dh_make

    Code:
        } elsif ($source_file =~ /bz2$/ )
        {
         if ( -x '/usr/bin/bzip2' && -x '/usr/bin/gizp' )
         {
          system("/usr/bin/bzip2 $source_file | /usr/bin/gzip > ../$package_name\_$version.orig.tar.gz");
    Mighty fine keen eye there. I build .deb's (with dh_make) all the time but haven't since upgrading to Breezy. I just did a quick search and found this bu...err, feature at Ubuntu Featurezilla: http://bugzilla.ubuntu.com/show_bug.cgi?id=17846

    Comment

    Working...
    X