Fix the fix
OBS-URL: https://build.opensuse.org/package/show/Base:System/bash?expand=0&rev=351
This commit is contained in:
parent
6d31bdd816
commit
18e165be77
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 20 06:59:04 UTC 2022 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
- Enable parallel builds by slpitting clean and all at make time
|
||||||
|
(Thanks to Christopher Yeleighton)
|
||||||
|
- Do not copy more than 1 byte for \(aq becoming a "'" in
|
||||||
|
quotes-man2html.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 19 13:11:05 UTC 2022 - Dr. Werner Fink <werner@suse.de>
|
Mon Sep 19 13:11:05 UTC 2022 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
@ -21,8 +21,6 @@
|
|||||||
%else
|
%else
|
||||||
%bcond_without alternatives
|
%bcond_without alternatives
|
||||||
%endif
|
%endif
|
||||||
# Parallel builds do not work!
|
|
||||||
%global _smp_mflags -j1
|
|
||||||
|
|
||||||
%define bextend %{nil}
|
%define bextend %{nil}
|
||||||
%define bversion 5.1
|
%define bversion 5.1
|
||||||
@ -464,9 +462,9 @@ test ${rl1[2]} = ${rl2[2]} || exit 1
|
|||||||
%if 0%{?do_profiling}
|
%if 0%{?do_profiling}
|
||||||
rm -f jobs.gcda
|
rm -f jobs.gcda
|
||||||
profilecflags=CFLAGS="$CFLAGS %{cflags_profile_feedback} -fprofile-correction"
|
profilecflags=CFLAGS="$CFLAGS %{cflags_profile_feedback} -fprofile-correction"
|
||||||
clean=clean
|
%make_build $makeopts "$profilecflags" clean
|
||||||
%endif
|
%endif
|
||||||
%make_build $makeopts "$profilecflags" $clean all
|
%make_build $makeopts "$profilecflags" all
|
||||||
%make_build $makeopts -C examples/loadables/
|
%make_build $makeopts -C examples/loadables/
|
||||||
%make_build $makeopts documentation
|
%make_build $makeopts documentation
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@ boo#1203091
|
|||||||
+ if (charb[1] == 'q') {
|
+ if (charb[1] == 'q') {
|
||||||
+ switch (charb[0]) {
|
+ switch (charb[0]) {
|
||||||
+ case 'a':
|
+ case 'a':
|
||||||
+ strncpy(charb, "'", 7);
|
+ strncpy(charb, "'", 1);
|
||||||
+ charb[7] = '\0';
|
+ charb[1] = '\0';
|
||||||
+ break;
|
+ break;
|
||||||
+ case 'd':
|
+ case 'd':
|
||||||
+ strncpy(charb, """, 6);
|
+ strncpy(charb, """, 6);
|
||||||
|
Loading…
Reference in New Issue
Block a user