diff options
author | Chris Wright <chrisw@sous-sol.org> | 2011-12-08 23:36:01 -0800 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2011-12-09 09:28:42 -0800 |
commit | 81fe12a77582f063f97e75f86b5f10e97dfbcaeb (patch) | |
tree | 326d628e11f050258e86043d95f1906c143c3cf0 /rhel | |
parent | b4059eff4a4469162082dc67a45fe15aa238ca95 (diff) | |
download | openvswitch-81fe12a77582f063f97e75f86b5f10e97dfbcaeb.tar.gz |
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 <chrisw@sous-sol.org>
Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'rhel')
-rw-r--r-- | rhel/openvswitch.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rhel/openvswitch.spec.in b/rhel/openvswitch.spec.in index 14496e7dd..f9a4e12a8 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 |