Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=879933

Jussi Lehtola <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Jussi Lehtola <[email protected]> ---
%build
cmake .
make %{?_smp_mflags}

%install
%make_install

mv %{buildroot}/usr/local/* %{buildroot}/usr/
rmdir %{buildroot}/usr/local/
# 64 path fix
mv %{buildroot}/usr/lib %{buildroot}/%{_libdir}


This is just plain wrong. Use

%build
%cmake .
make %{?_smp_mflags}

%install
make install DESTDIR=%{buildroot}

which does everything it should.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to