All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] utils/genrandconfig: adjust to core-dependencies removal
@ 2018-03-30 20:00 Thomas Petazzoni
  0 siblings, 0 replies; only message in thread
From: Thomas Petazzoni @ 2018-03-30 20:00 UTC (permalink / raw)
  To: buildroot

commit: https://git.buildroot.net/buildroot/commit/?id=a86b2523a0e0b723d580329c238e35e7e1af5fe3
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

In commit ea9669fffae7d807ccb3810eb6c662cbb9e8f96f ("core: kill
DEPENDENCIES_HOST_PREREQ"), the core-dependencies make target was
removed, and is now named just "dependencies".

This broke the utils/genrandconfig script, and this commit intends to
fix that.

Since this script is part of the Buildroot tree, it is provided
together with Buildroot, so we don't need to support the legacy
core-dependencies target. Someone checking out an older Buildroot will
have a working setup, with support/dependencies exposing
core-dependencies and utils/genrandconfig using core-dependencies. The
only broken situation will be between
ea9669fffae7d807ccb3810eb6c662cbb9e8f96f and this commit, but that's
not a sufficient reason to add some backward compatibility code.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 utils/genrandconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/genrandconfig b/utils/genrandconfig
index d958664572..07882200e0 100755
--- a/utils/genrandconfig
+++ b/utils/genrandconfig
@@ -404,7 +404,7 @@ def gen_config(args):
                            "savedefconfig"])
 
     return subprocess.call(["make", "O=%s" % args.outputdir, "-C", args.buildrootdir,
-                            "core-dependencies"])
+                            "dependencies"])
 
 
 if __name__ == '__main__':

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-03-30 20:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-30 20:00 [Buildroot] [git commit] utils/genrandconfig: adjust to core-dependencies removal Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.