diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-09-01 13:17:42 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-09-01 13:17:42 +0000 |
commit | 8c3991e85803ad09496a93d10fc2425fd57dec8f (patch) | |
tree | 53914bbc0e659698323380a285c9f93fa364d754 /onbld/debian/rules | |
parent | 4e50b031afedc69e320fffe58d6d47c638325df7 (diff) | |
download | illumos-packaging-8c3991e85803ad09496a93d10fc2425fd57dec8f.tar.gz |
onbld: first release - can build core libs
Diffstat (limited to 'onbld/debian/rules')
-rwxr-xr-x | onbld/debian/rules | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/onbld/debian/rules b/onbld/debian/rules index 8daa370..a2729ff 100755 --- a/onbld/debian/rules +++ b/onbld/debian/rules @@ -14,16 +14,19 @@ unpack-stamp: sed -i '/^TOOLS_PROTO=/d' illumos-gate/bldenv.sh touch $@ -patch: unpack +patch: patch-stamp +patch-stamp: unpack-stamp dh_testdir [ ! -f debian/patches/series ] || QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 + touch $@ unpatch: dh_testdir [ ! -f debian/patches/series ] || QUILT_PATCHES=debian/patches quilt pop -a -f || test $$? = 2 + rm -f patch-stamp install build build-arch build-indep: build-stamp -build-stamp: patch +build-stamp: patch-stamp # ctfstabs needs libctf, libctf needs ctfconvert # We've disabled ctfstabs via patch to build all tools # not requiring libctf, then build libctf, then - ctfstabs: |