diff options
author | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-08-04 08:58:53 +0200 |
---|---|---|
committer | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-10-09 04:49:56 -0700 |
commit | 4911aabb47f039aa3d205aa6c6ebe1a982797c97 (patch) | |
tree | 947a19a914a451276e31a1b956cbaaa2dcd14524 | |
parent | 1d272c2d0305c8c625b48f3339db1f6ff60b146c (diff) | |
download | rpm-4911aabb47f039aa3d205aa6c6ebe1a982797c97.tar.gz rpm-4911aabb47f039aa3d205aa6c6ebe1a982797c97.tar.bz2 rpm-4911aabb47f039aa3d205aa6c6ebe1a982797c97.zip |
Yocto: compatibility: "remove bashism"submit/tizen_mobile/20141120.053809submit/tizen_common/20141027.223054submit/tizen_common/20141024.152722accepted/tizen/mobile/20141120.054833accepted/tizen/common/20141027.223138
Yocto users can use different shells so the code inside recipes should
not be "bash only compliant".
Bug-Tizen: BTY-21
Change-Id: I5e91b4a284e195ff823f25f9eeed12544344c4b0
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
-rw-r--r-- | packaging/rpm.spec | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packaging/rpm.spec b/packaging/rpm.spec index 9fb9c36b4..9ac417e6c 100644 --- a/packaging/rpm.spec +++ b/packaging/rpm.spec @@ -184,7 +184,8 @@ rm -f %{buildroot}%{rpmlibdir}/rpmpopt rm -rf %{buildroot}%{_mandir}/{fr,ja,ko,pl,ru,sk} rm -f %{buildroot}%{_datadir}/locale/de/LC_MESSAGES/rpm.mo rm -f %{buildroot}%{rpmhome}/cpanflute %{buildroot}%{rpmhome}/cpanflute2 -install -m 755 scripts/find-supplements{,.ksyms} %{buildroot}%{rpmhome} +install -m 755 scripts/find-supplements %{buildroot}%{rpmhome} +install -m 755 scripts/find-supplements.ksyms %{buildroot}%{rpmhome} install -m 755 scripts/firmware.prov %{buildroot}%{rpmhome} install -m 755 scripts/debuginfo.prov %{buildroot}%{rpmhome} rm -f %{buildroot}%{rpmlibdir}/locale %{buildroot}%{rpmlibdir}/rpmrc |