From: Dean S. <dr...@us...> - 2001-12-01 01:08:40
|
Update of /cvsroot/u4x/specs In directory usw-pr-cvs1:/tmp/cvs-serv26956/specs Modified Files: gcc.spec Log Message: mmmhmm Index: gcc.spec =================================================================== RCS file: /cvsroot/u4x/specs/gcc.spec,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- gcc.spec 2001/12/01 01:02:21 1.23 +++ gcc.spec 2001/12/01 01:08:37 1.24 @@ -32,6 +32,12 @@ %description The GNU Compiler collection contains a collection of compilers neccessary for building software. +%package libgcc +Summary: The runtime library needed by programs compiled with GCC +Group: Development/Libraries +%description +This is needed if you want your GCC compiled applications to run. + %prep rm -rf $RPM_BUILD_ROOT $RPM_SOURCE_DIR/%{name}-%{version} @@ -65,6 +71,8 @@ # ln -s ./%{_libdir}/gcc-lib/%{_target_cpu}-%{_host_vendor}-%{_host_os}/%{gccname}-%{version}/cpp0 ./lib/cpp ln -s cpp0 cpp cd $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT/lib +mv $RPM_BUILD_ROOT%{_libdir}/libgcc*.so $RPM_BUILD_ROOT/lib %post rm /lib/cpp @@ -76,7 +84,6 @@ %defattr (-,root,root) %{_libdir}/gcc-lib/%{_target_cpu}-%{_host_vendor}-%{_host_os}/%{version} # %{_libdir}/libiberty.a -/lib/libgcc_s.so.1 %{_libdir}/libsupc++.la %{_libdir}/libsupc++.a %{_libdir}/libstdc++.so.3.0.1 @@ -102,9 +109,13 @@ %{_datadir}/libgcj.jar %{_infodir}/*.* %{_mandir}/man1/* + +%files libgcc +/lib/libgcc*.so + %changelog * Fri Nov 30 2001 Dean Scott <de...@u4...> -- Update to 3.0.2, move libgcc into /lib so systems will boot properly +- Update to 3.0.2, move libgcc into /lib so systems will boot properly, and make libgcc into its own package * Wed Aug 22 2001 Dean Scott <de...@u4...> - Updated file list to gcc-3.0.1 now that it builds on my box :-) * Tue Aug 21 2001 Dean Scott <de...@u4...> |