diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-09-07 19:16:31 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-09-07 19:16:31 +0000 |
commit | 5c13c6371f8dca83d3b8c63cb94150c8d1439738 (patch) | |
tree | 91e12cecdc5127b8c430e00afa77bc13c59a3973 /packages/nxproxy | |
parent | ffe927d2335fab1a9f3623d850be823c1e30aaa4 (diff) |
nxproxy: fix permissions
* while writing the qtnx.bb I discoverd that nxproxy had
the false permissions now 0755
* bump PR
Diffstat (limited to 'packages/nxproxy')
-rw-r--r-- | packages/nxproxy/nxproxy_3.2.0-1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
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}/ } |