Package: dh-make
Version: 0.53
Tags: patch
When using dh_make for the initial "debianization" of a source package,
dh_make fails with the message:
Unable to make debian/source subdirectory: No such file or directory
This patch seems to solve the problem:
--- /usr/bin/dh_make.orig 2010-04-05 12:25:43.000000000 +0200
+++ /usr/bin/dh_make 2010-04-05 12:26:16.000000000 +0200
@@ -110,9 +110,9 @@
}
}
- if ( ! -d 'debian/source' )
+ if ( ! -d 'source' )
{
- mkdir 'debian/source', 0755 or die "Unable to make
debian/source subdirectory: $! \n";
+ mkdir 'source', 0755 or die "Unable to make source
subdirectory: $! \n";
}
open OUT, ">$outfile" or die "Unable to open file $outfile for writing:
$! \n";
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]