]> git.e2factory.org Git - e2factory.git/commitdiff
Generate Makefile with upper-case initial
authorTobias Ulmer <tu@emlix.com>
Thu, 30 May 2013 14:14:42 +0000 (16:14 +0200)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:01:23 +0000 (15:01 +0100)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
Changelog
local/e2build.lua

index 57517b375c6ba36ed967e4e790867c36076a078b..f9ddd956cc715dc5b0d62a3ebe76b12bf2ef969d 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,5 @@
 NEXT:
+ * collect_project now creates "Makefile" instead of "makefile".
  * remove unusable E2_BUILD_NUMBER variable from build-script.
  * on git source update, fetch tags and prevent non-ff merges
 
index 2422a28bb2e25cadf665cb08a4b00a087df6d693..4768d14d27a84315591e52a816a645b6e855cde6 100644 (file)
@@ -1100,7 +1100,7 @@ local function collect_project(info, r, return_flags)
         local grp = info.chroot.groups_byname[g]
         local destdir = e2lib.join( res.build_config.T, "project/chroot", g)
         e2lib.mkdir(destdir, "-p")
-        local makefile, msg = io.open(e2lib.join(destdir, "makefile"), "w")
+        local makefile, msg = io.open(e2lib.join(destdir, "Makefile"), "w")
         if not makefile then
             return false, e:cat(msg)
         end