diff options
author | François Andriot <albator78@libertysurf.fr> | 2017-08-02 17:19:39 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2017-08-02 17:19:39 +0200 |
commit | df20fa92cb84771b6c0a3a0f3fa79af383f80d4d (patch) | |
tree | de5c9c98c8da31f46872604da5497bc1871c64bd /redhat/dependencies/tqscintilla | |
parent | fafb41251ffab1087bd69f1a8a4232c0651075b0 (diff) | |
download | tde-packaging-df20fa92cb84771b6c0a3a0f3fa79af383f80d4d.tar.gz tde-packaging-df20fa92cb84771b6c0a3a0f3fa79af383f80d4d.zip |
RPM: update build scripts for PCLinuxOS 2017
Diffstat (limited to 'redhat/dependencies/tqscintilla')
-rw-r--r-- | redhat/dependencies/tqscintilla/tqscintilla-14.0.0.spec | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/redhat/dependencies/tqscintilla/tqscintilla-14.0.0.spec b/redhat/dependencies/tqscintilla/tqscintilla-14.0.0.spec index a0a3c5978..b9d293309 100644 --- a/redhat/dependencies/tqscintilla/tqscintilla-14.0.0.spec +++ b/redhat/dependencies/tqscintilla/tqscintilla-14.0.0.spec @@ -202,8 +202,9 @@ for i in doc/html/*; do done # Installs the Designer plugin -for i in designer/*.so; do - %__install -D -m 644 $i %{buildroot}${QTDIR}/plugins/designer/${i##*/} || %__install -D -m 644 ${QTDIR}/plugins/$i %{buildroot}${QTDIR}/plugins/designer/${i##*/} +for i in designer/*.so ${QTDIR}/plugins/designer/*.so; do + [ -r "${i}" ] || continue + %__install -D -m 644 $i %{buildroot}${QTDIR}/plugins/designer/${i##*/} done # Installs libraries |