From: Chris Wright Date: Fri, 9 Dec 2011 07:36:01 +0000 (-0800) Subject: rhel: openvswitch.spec.in installs README as executable X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81fe12a77582f063f97e75f86b5f10e97dfbcaeb;p=openvswitch rhel: openvswitch.spec.in installs README as executable Fix this rpmlint warning: W: spurious-executable-perm /usr/share/doc/openvswitch-1.4.0/README.RHEL by specifying mode on install. Signed-off-by: Chris Wright Signed-off-by: Ben Pfaff --- diff --git a/rhel/openvswitch.spec.in b/rhel/openvswitch.spec.in index 14496e7d..f9a4e12a 100644 --- a/rhel/openvswitch.spec.in +++ b/rhel/openvswitch.spec.in @@ -47,7 +47,7 @@ for base in \ done docdir=$RPM_BUILD_ROOT/usr/share/doc/openvswitch-%{version} install -d -m755 "$docdir" -install rhel/README.RHEL "$docdir" +install -m 0644 rhel/README.RHEL "$docdir" install python/compat/uuid.py $RPM_BUILD_ROOT/usr/share/openvswitch/python install python/compat/argparse.py $RPM_BUILD_ROOT/usr/share/openvswitch/python