diff options
-rw-r--r-- | newapkbuild.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newapkbuild.in b/newapkbuild.in index 9c4ffbf..967d38c 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -300,7 +300,7 @@ __EOF__ python) build_python;; *) - printf '# Add build instructions here.' >> APKBUILD + printf '# Add build instructions here.\n:\n' >> APKBUILD esac cat >>APKBUILD<<__EOF__ @@ -321,7 +321,7 @@ __EOF__ python) check_python;; *) - printf '# Add test instructions here.' >> APKBUILD + printf '# Add test instructions here.\n:\n' >> APKBUILD esac cat >>APKBUILD<<__EOF__ @@ -346,7 +346,7 @@ __EOF__ python) package_python;; *) - printf '# Add packaging instructions here.' >> APKBUILD + printf '# Add packaging instructions here.\n:\n' >> APKBUILD esac if [ -n "$cpinitd" ]; then |