diff options
Diffstat (limited to 'dh_illumos_gate')
-rwxr-xr-x | dh_illumos_gate | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dh_illumos_gate b/dh_illumos_gate index a601bf1..2b6ca36 100755 --- a/dh_illumos_gate +++ b/dh_illumos_gate @@ -147,7 +147,7 @@ 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)>. +Disable C<lint> libraries by replacing C<LINT> with ":". So it will do nothing. Successfully. Also define C<LINTLIB> to empty string to prevent installation of lint library (which does not exist). @@ -189,7 +189,7 @@ if (open (ENV, '>', $env)) { print ENV "export LD_ALTEXEC='/usr/bin/ld-gnu-to-sun'\n"; print ENV "export BUILD_TOOLS='/opt'\n"; print ENV "export MACH='$mach'\n"; - print ENV "export LINT='true'\n"; + print ENV "export LINT=:\n"; print ENV "export LINTLIB=''\n"; print ENV "export __GNUC=''\n"; print ENV "export __GNUC4=''\n"; @@ -202,6 +202,7 @@ if (open (ENV, '>', $env)) { print ENV "export LEX='/usr/bin/flex -l'\n"; print ENV "export LDLIBS32=\"-L\$ROOTFS_LIBDIR -L\$ROOTLIBDIR\"\n"; print ENV "export LDLIBS64=\"-L\$ROOTFS_LIBDIR64 -L\$ROOTLIBDIR64\"\n"; + print ENV "export STRIP=':'\n"; close(ENV); } else { @@ -215,7 +216,7 @@ to F<illumos-gate/bldenv.sh>. Fix definition of C<CTF*> variables, so this script will not override them if they are already defined. These variables -can be set to C<true>, when executing L<dh_illumos_make(1)> +can be set to ":", when executing L<dh_illumos_make(1)> with option C<--without-ctf>. =cut |