diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-07-02 23:58:55 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-07-02 23:58:55 +0000 |
commit | 32185d6fff175b48766cf6efd444c76b1f6834a0 (patch) | |
tree | 7b9c89a9da52b489e6fa51b96979b86748083a8a | |
parent | c2b5781c5651574ee926f85a6fa566657c17d5b1 (diff) | |
download | dh-illumos-32185d6fff175b48766cf6efd444c76b1f6834a0.tar.gz |
do not try to install lint libraries
-rwxr-xr-x | dh_illumos_gate | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dh_illumos_gate b/dh_illumos_gate index 9b66645..cd13850 100755 --- a/dh_illumos_gate +++ b/dh_illumos_gate @@ -168,7 +168,8 @@ See L<ld-gnu-to-sun(1)>. Set proto area to be F<./debian/tmp>. Disable C<lint> libraries by replacing C<LINT> with L<true(1)>. -So it will do nothing. Successfully. +So it will do nothing. Successfully. Also define C<LINTLIB> to empty +string to prevent installation of lint library (which does not exist). =cut @@ -192,6 +193,7 @@ if (open (ENV, '>', $env)) { print ENV "export BUILD_TOOLS='/opt'\n"; print ENV "export MACH='$mach'\n"; print ENV "export LINT='true'\n"; + print ENV "export LINTLIB=''\n"; close(ENV); } else { error("Failed to write `$env': $!"); |