https://bugzilla.redhat.com/show_bug.cgi?id=1067041
--- Comment #5 from Christopher Meng <[email protected]> --- 1. doc package doesn't have the strong reason to Requires: %{name}%{?_isa} = %{version}-%{release} So please remove this line. 2. cd autodock %configure make %{?_smp_mflags} cd %{_builddir}/src/autogrid %configure make %{?_smp_mflags} My optimization: pushd autodock %configure make %{?_smp_mflags} popd pushd autogrid %configure make %{?_smp_mflags} popd(this popd is optional) 3. %install cd autodock make install DESTDIR=%{buildroot} cd %{_builddir}/src/autogrid make install DESTDIR=%{buildroot} Mine: make -C autodock install DESTDIR=%{buildroot} make -C autogrid install DESTDIR=%{buildroot} -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/package-review
