Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48586218 authored by Steven Rostedt's avatar Steven Rostedt
Browse files

kconfig: add missing dependency of conf to localyesconfig



There's a dependency missing.

$ make localyesconfig
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/docproc
  HOSTCC  scripts/basic/hash
using config: '/boot/config-2.6.27.25-78.2.56.fc9.x86_64'
/bin/sh: line 8: scripts/kconfig/conf: No such file or directory
make[1]: *** [localyesconfig] Error 127
make: *** [localyesconfig] Error 2

Thus the script failed to run. But the sed command that converts the '=m'
to '=y' still ran. This gives us a distro config with all modules
converted to built in!

The missing dependency was for conf for localyesconfig. This
dependency was already set for localmodconfig.

Reported-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent a7c02602
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -43,7 +43,7 @@ localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
	fi
	fi
	$(Q)rm -f .tmp.config
	$(Q)rm -f .tmp.config


localyesconfig: $(obj)/streamline_config.pl
localyesconfig: $(obj)/streamline_config.pl $(obj)/conf
	$(Q)perl $< $(Kconfig) > .tmp.config
	$(Q)perl $< $(Kconfig) > .tmp.config
	$(Q)sed -i s/=m/=y/ .tmp.config
	$(Q)sed -i s/=m/=y/ .tmp.config
	$(Q)if [ -f .config ]; then 				\
	$(Q)if [ -f .config ]; then 				\