summaryrefslogtreecommitdiff
path: root/scripts/basic/fixdep
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/basic/fixdep')
-rwxr-xr-xscripts/basic/fixdep27
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/basic/fixdep b/scripts/basic/fixdep
deleted file mode 100755
index cc412bec06c..00000000000
--- a/scripts/basic/fixdep
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-# Simplfied version of Linux scripts/basic/fixdep. We don't need
-# CONFIG tracking etc for this usecase.
-
-
-# Fixdep's interface is described:
-
-# It is invoked as
-#
-# fixdep <depfile> <target> <cmdline>
-#
-# and will read the dependency file <depfile>
-#
-# The transformed dependency snipped is written to stdout.
-#
-# It first generates a line
-#
-# cmd_<target> = <cmdline>
-#
-# and then basically copies the .<target>.d file to stdout, in the
-# process filtering out the dependency on autoconf.h and adding
-# dependencies on include/config/my/option.h for every
-# CONFIG_MY_OPTION encountered in any of the prequisites.
-
-echo cmd_$2 = $3
-cat $1