From: Henning Heinold Date: Sun, 7 Sep 2008 19:16:31 +0000 (+0000) Subject: nxproxy: fix permissions X-Git-Tag: Release-2010-05/1~6139^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c13c6371f8dca83d3b8c63cb94150c8d1439738;p=openembedded.git nxproxy: fix permissions * while writing the qtnx.bb I discoverd that nxproxy had the false permissions now 0755 * bump PR --- diff --git a/packages/nxproxy/nxproxy_3.2.0-1.bb b/packages/nxproxy/nxproxy_3.2.0-1.bb index 162945f0d3..ca543ef05c 100644 --- a/packages/nxproxy/nxproxy_3.2.0-1.bb +++ b/packages/nxproxy/nxproxy_3.2.0-1.bb @@ -1,7 +1,7 @@ DESCRIPTION = "The binary which uses libxcomp from nomachine" HOMEPAGE = "http://www.nomachine.com/" LICENSE = "GPL" -PR = "r0" +PR = "r1" DEPENDS = "libxcomp" @@ -14,5 +14,5 @@ S = "${WORKDIR}/nxproxy" do_install () { install -d ${D}${bindir}/ - install -s -m 0644 nxproxy ${D}${bindir}/ + install -s -m 0755 nxproxy ${D}${bindir}/ }