Package: dh-make
Version 0.39

Hi,

In addition of bug #325220

/usr/bin/dh-make line 405

if ( -x '/usr/bin/bzip2' && -x '/usr/bin/gizp' )

should be

if ( -x '/usr/bin/bzip2' && -x '/usr/bin/gzip' )

In my distro (Ubuntu) gzip is here : /bin/gzip

so,

     if ( -x 'bzip2' && -x 'gizp' )
     {
system("bzip2 $source_file | gzip > ../$package_name\_$version.orig.tar.gz");
     } else {
       die('Source file is a bz2 but bzip2 or gzip not available');
     }

should work as the PATH is correctly define on most systems.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to