Changes: DISABLE_VERIFICATION=1 added for other than arm and armel builds. New unstable debian version 0.10.0.

pull/1/head
Jussi Lind 15 years ago
parent 8956239377
commit 0dedfb0714

6
debian/changelog vendored

@ -1,3 +1,9 @@
applauncherd (0.10.0) unstable; urgency=low
* debian/rules: DISABLE_VERIFICATION=1 added to other than arm and armel builds
-- Jussi Lind <jussi.lind@nokia.com> Mon, 02 Aug 2010 11:45:08 +0300
applauncherd (0.9.0) stable; urgency=low
* Added CAP::setpcap to applauncherd's aegis file as a partial fix for NB#180963

7
debian/rules vendored

@ -12,15 +12,13 @@ configure-stamp:
ifeq ($(DEB_HOST_ARCH), arm)
# Configure Applauncherd to be build with tests
# TODO: remove DISABLE_VERIFICATION=1 when works
BUILD_TESTS=1 ./configure
else ifeq ($(DEB_HOST_ARCH), armel)
# Configure Applauncherd to be build with tests
# TODO: remove DISABLE_VERIFICATION=1 when works
BUILD_TESTS=1 ./configure
else
# Configure Applauncherd to be build with tests and without checking invoker credentials
BUILD_TESTS=1 ./configure
BUILD_TESTS=1 DISABLE_VERIFICATION=1 ./configure
endif
touch configure-stamp
@ -83,7 +81,8 @@ binary-arch: build install
dh_gencontrol
dh_md5sums
dh_builddeb
# TODO: CLEAN THIS UP!
# This enables Aegis for arm and armel
ifeq ($(DEB_HOST_ARCH), arm)
aegis-deb-add -control debian/applauncherd-launcher/DEBIAN/control .. debian/applauncherd-launcher.aegis=_aegis
aegis-deb-add -control debian/applauncherd-invoker/DEBIAN/control .. debian/applauncherd-invoker.aegis=_aegis

Loading…
Cancel
Save