Rebase to 20111219, Revert default stack size to 10000
This commit is contained in:
parent
65524f4b66
commit
e6803cd22d
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@ byacc-20*/
|
|||||||
*.rpm
|
*.rpm
|
||||||
.*.log
|
.*.log
|
||||||
/byacc-20110908.tgz
|
/byacc-20110908.tgz
|
||||||
|
/byacc-20111219.tgz
|
||||||
|
14
byacc.spec
14
byacc.spec
@ -1,4 +1,4 @@
|
|||||||
%define byaccdate 20110908
|
%define byaccdate 20111219
|
||||||
|
|
||||||
Summary: Berkeley Yacc, a parser generator
|
Summary: Berkeley Yacc, a parser generator
|
||||||
Name: byacc
|
Name: byacc
|
||||||
@ -23,6 +23,11 @@ this package.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n byacc-%{byaccdate}
|
%setup -q -n byacc-%{byaccdate}
|
||||||
|
|
||||||
|
# Revert default stack size back to 10000
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=743343
|
||||||
|
find . -type f -name \*.c -print0 |
|
||||||
|
xargs -0 sed -i 's/YYSTACKSIZE 500/YYSTACKSIZE 10000/g'
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-dependency-tracking
|
%configure --disable-dependency-tracking
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
@ -50,6 +55,13 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man1/byacc.1*
|
%{_mandir}/man1/byacc.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 9 2012 Petr Machata <pmachata@redhat.com> - 1.9.20111219-1
|
||||||
|
- Rebase to 20111219
|
||||||
|
- add "-s" option
|
||||||
|
- Resolves: #769237
|
||||||
|
- Revert default stack size to 10000
|
||||||
|
- Related: #743343
|
||||||
|
|
||||||
* Thu Sep 29 2011 Petr Machata <pmachata@redhat.com> - 1.9.20110908-1
|
* Thu Sep 29 2011 Petr Machata <pmachata@redhat.com> - 1.9.20110908-1
|
||||||
- Rebase to 20110908
|
- Rebase to 20110908
|
||||||
- add "-i" option.
|
- add "-i" option.
|
||||||
|
Loading…
Reference in New Issue
Block a user