# # patch "monotone.spec" # from [f2b0598e1ad2875100ef4f37055e46bd316494a3] # to [33404c56eb0d468a42d9a5565560879512ae815e] # # patch "std_hooks.lua" # from [f7edfb3f0063bd68d3a141693ec1141e9ff8266f] # to [a2a27daced7769d54850f059f39554cb1e0fc78d] # ======================================================================== --- monotone.spec f2b0598e1ad2875100ef4f37055e46bd316494a3 +++ monotone.spec 33404c56eb0d468a42d9a5565560879512ae815e @@ -24,11 +24,10 @@ %build CFLAGS="$RPM_OPT_FLAGS" \ CXXFLAGS="$RPM_OPT_FLAGS" \ -./configure --prefix=$RPM_BUILD_ROOT/usr \ +./configure --prefix=$RPM_BUILD_ROOT%{_prefix} \ + --datadir=$RPM_BUILD_ROOT%{_datadir} \ --infodir=$RPM_BUILD_ROOT%{_infodir} \ - --mandir=$RPM_BUILD_ROOT%{_mandir} \ - --with-bundled-sqlite \ - --with-bundled-lua + --mandir=$RPM_BUILD_ROOT%{_mandir} make %install @@ -60,6 +59,7 @@ %{_bindir}/monotone %{_mandir}/man1/monotone.1.gz %{_infodir}/*.info*.gz +%{_datadir}/locale/*/LC_MESSAGES/monotone.mo %changelog @@ -127,5 +127,3 @@ * Wed Sep 24 2003 graydon hoare - Initial build. - - ======================================================================== --- std_hooks.lua f7edfb3f0063bd68d3a141693ec1141e9ff8266f +++ std_hooks.lua a2a27daced7769d54850f059f39554cb1e0fc78d @@ -98,6 +98,7 @@ if (string.find(name, "%.lo$")) then return true end if (string.find(name, "^core$")) then return true end if (string.find(name, "/core$")) then return true end + if (string.find(name, "/core%.%d+$")) then return true end -- python if (string.find(name, "%.pyc$")) then return true end if (string.find(name, "%.pyo$")) then return true end