diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/control | 1 | ||||
-rwxr-xr-x | dh_illumos_gate | 11 |
3 files changed, 20 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 3324547..d148b6a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +dh-illumos (9.5.7) unstable; urgency=low + + * dh-illumos depends on onbld (for cw and aw) + * Mention issue with dh_illumos_gate --build + (tar: ...: Not found in archive) + + -- Igor Pashev <pashev.igor@gmail.com> Mon, 22 Apr 2013 16:40:03 +0000 + dh-illumos (9.5.6) unstable; urgency=low * Removed dependency on illumos-source diff --git a/debian/control b/debian/control index 62ef248..9fce68a 100644 --- a/debian/control +++ b/debian/control @@ -10,6 +10,7 @@ Architecture: all Multi-Arch: foreign Depends: ${perl:Depends}, ${misc:Depends}, debhelper, ksh93, make, ld-gnu-to-sun, + onbld, Enhances: debhelper Description: debhelper addons to work with illumos sources This package provides debhelper addons configuring and building diff --git a/dh_illumos_gate b/dh_illumos_gate index ed8da8e..5efe85b 100755 --- a/dh_illumos_gate +++ b/dh_illumos_gate @@ -398,6 +398,17 @@ To clean package (via C<./debian/rules clean>) you should just remove F<usr/> di rm -rf usr +C<dh_illumos_gate --build> will fail if extracting files which should be extracted +due to option C<--build>. This is a L<tar(1)> issue (tar: ...: Not found in archive). +For example, this will fail: + + dh_illumos_gate --build usr/src/cmd usr/src/lib/Makefile.lib + +Workaround: + + dh_illumos_gate --build usr/src/cmd + dh_illumos_gate usr/src/lib/Makefile.lib + =head1 SEE ALSO L<debhelper(7)>, L<dh_illumos_make(1)>. |