~ubuntu-branches/ubuntu/wily/debianutils/wily

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2011-05-18 15:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110518150415-3phqeaqa13lwox4l
Tags: 4
ischroot utility by Aurelien Jarno to detect chrootedness.
closes: #627205.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
65
65
        strip --remove-section=.comment --remove-section=.note \
66
66
                debian/tmp/bin/run-parts \
67
 
                debian/tmp/bin/tempfile
 
67
                debian/tmp/bin/tempfile \
 
68
                debian/tmp/usr/bin/ischroot
68
69
endif
69
70
 
70
71
ifneq ($(DEB_HOST_ARCH_OS),hurd)
91
92
 
92
93
        cd debian/tmp && find * -type f ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums
93
94
 
94
 
        dpkg-shlibdeps debian/tmp/bin/run-parts debian/tmp/bin/tempfile
 
95
        dpkg-shlibdeps debian/tmp/bin/run-parts \
 
96
                        debian/tmp/bin/tempfile \
 
97
                        debian/tmp/usr/bin/ischroot
95
98
        dpkg-gencontrol -isp
96
99
        dpkg --build debian/tmp ..
97
100