Bug#573348: Possible patch (mkdir could not create dirs recursivly)

2010-09-07 Thread Bruno Patri
--- NtfsConfig.py   2010-09-07 08:04:08.091882001 +0200
+++ NtfsConfig.py.old   2010-09-07 08:03:42.251882001 +0200
@@ -53,7 +53,7 @@
 if not os.path.exists(value) and os.path.islink(value) :
 os.unlink(value)
 if not os.path.exists(HAL_CONFIG_DIR) :
-os.makedirs(HAL_CONFIG_DIR)
+os.mkdir(HAL_CONFIG_DIR)
 
 # Create FstabHandler object
 self.disk = FstabHandler(FSTAB, parent = self.dialog_main, 
external_change_watch = True)




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#338923: dh-make /usr/bin/dh-make error

2005-11-13 Thread Bruno Patri

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]