diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2015-10-18 11:27:45 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2015-10-18 11:27:45 +0300 |
commit | 0631fe39ce120550023ec32e642151a4e32d8e67 (patch) | |
tree | 04ad8a7c63ac1e6050ddad461b51ff032f794345 /uts | |
parent | 364b5e0fbdae9389e91b6126f013a05bc890a8b6 (diff) | |
download | illumos-packaging-0631fe39ce120550023ec32e642151a4e32d8e67.tar.gz |
Sanity check
Diffstat (limited to 'uts')
-rw-r--r-- | uts/debian/control | 2 | ||||
-rwxr-xr-x | uts/debian/rules | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/uts/debian/control b/uts/debian/control index 958fdd1..d07246d 100644 --- a/uts/debian/control +++ b/uts/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Igor Pashev <pashev.igor@gmail.com> Build-Depends: debhelper, - dh-illumos (>= 9.6), + dh-illumos (>= 9.6.1), gcc (>= 4:4.8.2), sunmake, sgs-yacc, diff --git a/uts/debian/rules b/uts/debian/rules index 7d7ab17..03b07fd 100755 --- a/uts/debian/rules +++ b/uts/debian/rules @@ -80,6 +80,10 @@ endif override_dh_strip: : # we don't strip the kernel +override_dh_makeshlibs: + : # there is no shared libs +override_dh_shlibdeps: + : # there is no shared libs override_dh_auto_build: mkdir -p \ @@ -89,6 +93,8 @@ override_dh_auto_build: $(ROOT)/boot/solaris dh_illumos_make $(BUILD)/usr/src/uts -t install_h $(make) dh_illumos_make --ctf $(BUILD)/usr/src/uts $(make) + # sanity check: + objdump -p $(ROOT)/kernel/fs/amd64/dev | grep 'NEEDED *fs/devfs' override_dh_auto_install: rm -rf debian/tmp |