From 11b491610cc4fcbf8e252c6ec5d72ae3ad0500bc Mon Sep 17 00:00:00 2001 From: Al Stone Date: Thu, 25 Oct 2012 10:40:18 -0600 Subject: update gdb config parameters in stage2 --- recipe.d/0007-gdb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'recipe.d') diff --git a/recipe.d/0007-gdb b/recipe.d/0007-gdb index cdaf9bf..5e9671b 100644 --- a/recipe.d/0007-gdb +++ b/recipe.d/0007-gdb @@ -5,7 +5,11 @@ #requires texinfo mcd $BUILDDIR/gdb - $SRC/gdb-*/configure $TCONFIGARGS --without-rpm --with-system-readline + OTHERARGS="--disable-gdbserver --disable-multi-ice \ + --without-expat --without-python --without-tcl \ + --without-tk --without-x --disable-gtk \ + --without-rpm --with-system-readline" + $SRC/gdb-*/configure $TCONFIGARGS $OTHERARGS notparallel make $J -k make $J -k install -- cgit From 836e10f940d5625d2e83eb41accf17f99043c0a6 Mon Sep 17 00:00:00 2001 From: Al Stone Date: Wed, 31 Oct 2012 15:27:38 +0100 Subject: minor tweak to texinfo for stage2 --- recipe.d/0006-texinfo | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'recipe.d') diff --git a/recipe.d/0006-texinfo b/recipe.d/0006-texinfo index 677c80b..ac911bc 100644 --- a/recipe.d/0006-texinfo +++ b/recipe.d/0006-texinfo @@ -2,6 +2,10 @@ mcd $BUILDDIR/texinfo $SRC/texinfo-*/configure $TCONFIGARGS + # texi2dvi has been touched so the builder + # will try to rebuild the man page from texi2dvi but that + # spits out only a warning that no tex system is installed + touch doc/texi2dvi.1 make $J -k make $J -k install -- cgit From 6e72a1a86c433b70bf4a1f52e313dc2dcf696953 Mon Sep 17 00:00:00 2001 From: Al Stone Date: Thu, 8 Nov 2012 17:47:43 -0700 Subject: temporary change to not install docs, allowing install to complete --- recipe.d/0010-pcre | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipe.d') diff --git a/recipe.d/0010-pcre b/recipe.d/0010-pcre index 9f3b6bf..2a3ff4b 100644 --- a/recipe.d/0010-pcre +++ b/recipe.d/0010-pcre @@ -6,5 +6,6 @@ rm -f /usr/share/man/man3/pcre* || true mcd $BUILDDIR/pcre $SRC/pcre-*/configure $TCONFIGARGS make $J - make $J install + #make $J install + make $J install-exec install-includeHEADERS install-nodist_includeHEADERS install-pkgconfigDATA -- cgit From a5ebc91ebb9ea78a5d35dd7560f47bbf78258430 Mon Sep 17 00:00:00 2001 From: Al Stone Date: Thu, 8 Nov 2012 17:48:19 -0700 Subject: chkconfig needs gettext and popt to build in stage2 --- recipe.d/0012-chkconfig | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'recipe.d') diff --git a/recipe.d/0012-chkconfig b/recipe.d/0012-chkconfig index 4a5686e..c35a3d3 100644 --- a/recipe.d/0012-chkconfig +++ b/recipe.d/0012-chkconfig @@ -1,6 +1,8 @@ -mcd $BUILDDIR/chkconfig -cp -rp $SRC/chkconfig-*/* . -sed '/install.*ntsysv/d; /all/s/ntsysv//' Makefile > Makefile.stage2 -make -f Makefile.stage2 $J CC=gcc -make -f Makefile.stage2 $J -k install || true +#requires popt + + mcd $BUILDDIR/chkconfig + cp -rp $SRC/chkconfig-*/* . + sed '/install.*ntsysv/d; /all/s/ntsysv//' Makefile > Makefile.stage2 + make -f Makefile.stage2 $J CC=gcc + make -f Makefile.stage2 $J -k install || true -- cgit