From a8b75361e43574a3056b3a2ac543548a1f820ceb Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Sat, 28 Nov 2015 09:53:16 +0200 Subject: [PATCH] Fixed wrong prefix value. %{buildroot} value we now pass through 'make install'. --HG-- branch : develop --- dist/rpm/valentina.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/rpm/valentina.spec b/dist/rpm/valentina.spec index 49e950125..ffdebb4fc 100644 --- a/dist/rpm/valentina.spec +++ b/dist/rpm/valentina.spec @@ -77,9 +77,9 @@ a unique pattern making tool. %build %if 0%{?suse_version} >= 1320 -qmake-qt5 PREFIX=%{buildroot}%{_prefix} LRELEASE=lrelease-qt5 Valentina.pro -r CONFIG+=no_ccache +qmake-qt5 PREFIX=%{_prefix} LRELEASE=lrelease-qt5 Valentina.pro -r CONFIG+=no_ccache %else -qmake-qt5 PREFIX=%{buildroot}%{_prefix} Valentina.pro -r CONFIG+=no_ccache +qmake-qt5 PREFIX=%{_prefix} Valentina.pro -r CONFIG+=no_ccache %endif %{__make} %{?jobs:-j %jobs}