diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-11-24 16:48:53 +0100 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-11-24 16:48:53 +0100 |
commit | e9e7fa543273fffa8131b2244e5c994fe22616e2 (patch) | |
tree | 6934c069a51e0e17a4a2df4b0521d3f00364a5ac /redhat/tdesdk/tdesdk-14.0.0.spec | |
parent | 2bdb0ca57d3ad95d94d1c20a395c5bf210bbcacd (diff) | |
download | tde-packaging-e9e7fa543273fffa8131b2244e5c994fe22616e2.tar.gz tde-packaging-e9e7fa543273fffa8131b2244e5c994fe22616e2.zip |
RPM Packaging: fix build issue on openSUSE 13.1
Diffstat (limited to 'redhat/tdesdk/tdesdk-14.0.0.spec')
-rw-r--r-- | redhat/tdesdk/tdesdk-14.0.0.spec | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/redhat/tdesdk/tdesdk-14.0.0.spec b/redhat/tdesdk/tdesdk-14.0.0.spec index e5d9bd962..fade817ef 100644 --- a/redhat/tdesdk/tdesdk-14.0.0.spec +++ b/redhat/tdesdk/tdesdk-14.0.0.spec @@ -1088,10 +1088,10 @@ unset QTDIR QTINC QTLIB export PATH="%{tde_bindir}:${PATH}" export PKG_CONFIG_PATH="%{tde_libdir}/pkgconfig" -%if 0%{?rhel} || 0%{?fedora} || 0%{?suse_version} -%__mkdir_p build -cd build -%endif +if ! rpm -E %%cmake|grep -q "cd build"; then + %__mkdir_p build + cd build +fi %cmake \ -DCMAKE_BUILD_TYPE="RelWithDebInfo" \ @@ -1126,9 +1126,9 @@ export PATH="%{tde_bindir}:${PATH}" # Installs kdepalettes -%__install -D -m 644 kdepalettes/kde_xpaintrc %{?buildroot}%{tde_datadir}/kdepalettes -%__install -D -m 644 kdepalettes/KDE_Gimp %{?buildroot}%{tde_datadir}/kdepalettes -%__install -D -m 644 kdepalettes/README %{?buildroot}%{tde_datadir}/kdepalettes +%__install -D -m 644 kdepalettes/kde_xpaintrc %{?buildroot}%{tde_datadir}/kdepalettes/kde_xpaintrc +%__install -D -m 644 kdepalettes/KDE_Gimp %{?buildroot}%{tde_datadir}/kdepalettes/KDE_Gimp +%__install -D -m 644 kdepalettes/README %{?buildroot}%{tde_datadir}/kdepalettes/README # Installs SVN protocols as alternatives %if 0%{?build_kioslave} |