]> git.e2factory.org Git - e2factory.git/commitdiff
tools.lua: fix path to e2-su-2.2
authorRolf Eike Beer <eb@emlix.com>
Tue, 5 Apr 2016 10:57:25 +0000 (12:57 +0200)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:18 +0000 (15:41 +0100)
This binary is installed into BINDIR, which just happens to be always
PREFIX/bin. Since BINDIR is already written to buildconfig.lua make sure the
location always points to the correct directory.

Signed-off-by: Rolf Eike Beer <eb@emlix.com>
generic/tools.lua

index 10062532bfe2a37188b80e899688f8c041e61f74..7b6ca4149414afe154d0ad0eaaad3ad0f1c19952 100644 (file)
@@ -41,7 +41,7 @@ local toollist = {
     patch = { name = "patch", flags = "", optional = false },
     gzip = { name = "gzip", flags = "", optional = false },
     unzip = { name = "unzip", flags = "", optional = false },
-    ["e2-su-2.2"] = { name = buildconfig.PREFIX .. "/bin/e2-su-2.2",
+    ["e2-su-2.2"] = { name = buildconfig.BINDIR .. "/e2-su-2.2",
     flags = "", optional = false },
 }