[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140619001305.GA24952@birch.djwong.org>
Date: Wed, 18 Jun 2014 17:13:06 -0700
From: "Darrick J. Wong" <darrick.wong@...cle.com>
To: Michal Marek <mmarek@...e.cz>
Cc: linux-kernel <linux-kernel@...r.kernel.org>
Subject: [PATCH] builddeb: fix errors caused by objtree redefinition
In commit 7e1c04779efd51154baf652e653ceb24ce68939b ("kbuild: Use
relative path for $(objtree)"), objtree was redefined from whatever
$(CURDIR) is to a simple ".". Unfortunately, this breaks builddeb,
which was relying on $objtree to be an absolute path, not a relative
one. Since the script is run from the object directory, pick up a
more absolute value for objtree where it's needed.
Signed-off-by: Darrick J. Wong <darrick.wong@...cle.com>
---
scripts/package/builddeb | 1 +
1 file changed, 1 insertion(+)
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 2f3ec77..ce7d05b 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -299,6 +299,7 @@ EOF
fi
# Build header package
+objtree="$(pwd)"
(cd $srctree; find . -name Makefile\* -o -name Kconfig\* -o -name \*.pl > "$objtree/debian/hdrsrcfiles")
(cd $srctree; find arch/$SRCARCH/include include scripts -type f >> "$objtree/debian/hdrsrcfiles")
(cd $objtree; find arch/$SRCARCH/include Module.symvers include scripts -type f >> "$objtree/debian/hdrobjfiles")
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists