Commit 0d888e36 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- pull kbuild from 2.6.22.7. This should fix the ncurses detection for dylib et al

parent e640e6a8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -143,6 +143,7 @@ endif

clean-files	:= lkc_defs.h qconf.moc .tmp_qtcheck \
		   .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c
clean-files     += mconf qconf gconf

# Needed for systems without gettext
KBUILD_HAVE_NLS := $(shell \
+2 −2
Original line number Diff line number Diff line
This is a copy of the kconfig code in the kernel (currently 2.6.21.5) tweaked to
This is a copy of the kconfig code in the kernel (currently 2.6.22.7) tweaked to
suit Buildroot.

To update:
@@ -6,7 +6,7 @@ To update:
	cd package/config.new
	cp /usr/src/linux/Documentation/kbuild/kconfig-language.txt .
	mv Makefile Makefile.kconfig
	patch -p1 < ../config/kconfig-to-buildroot.patch
	patch -p1 < ../config/kconfig-to-buildroot2.patch
	cp ../config/README.buildroot2 .
	cp ../config/foo.h .
	cp ../config/Makefile .
+1 −0
Original line number Diff line number Diff line
@@ -558,6 +558,7 @@ int main(int ac, char **av)
		if (stat(".config", &tmpstat)) {
			printf(_("***\n"
				"*** You have not yet configured Buildroot!\n"
				"*** (missing .config file)\n"
				"***\n"
				"*** Please run some configurator (e.g. \"make oldconfig\" or\n"
				"*** \"make menuconfig\" or \"make config\").\n"
+699 −130

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -2264,7 +2264,7 @@ FILE *zconf_fopen(const char *name)
	FILE *f;

	f = fopen(name, "r");
	if (!f && name[0] != '/') {
	if (!f && name != NULL && name[0] != '/') {
		env = getenv(SRCTREE);
		if (env) {
			sprintf(fullname, "%s/%s", env, name);
Loading