build: Add missing new line to replaced python shebang line. (Fix bug #9909)
[obnox/samba/samba-obnox.git] / buildtools / wafsamba / wafsamba.py
index 0d407e6a0a6b6c6bc3641bb5e7f65f1bcd2fff75..aaa09392f1eb23930f04ece1b70ab4153c25e53a 100644 (file)
@@ -704,9 +704,9 @@ sys.path.insert(1, "%s")""" % (task.env["PYTHONARCHDIR"], task.env["PYTHONDIR"])
     shebang = None
 
     if task.env["PYTHON"][0] == "/":
-        replacement_shebang = "#!%s" % task.env["PYTHON"]
+        replacement_shebang = "#!%s\n" % task.env["PYTHON"]
     else:
-        replacement_shebang = "#!/usr/bin/env %s" % task.env["PYTHON"]
+        replacement_shebang = "#!/usr/bin/env %s\n" % task.env["PYTHON"]
 
     installed_location=task.outputs[0].bldpath(task.env)
     source_file = open(task.inputs[0].srcpath(task.env))