From 87c4fb51a460b10153c10297bfaea7e5c16a811b Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 8 Apr 2012 18:28:39 -0400 Subject: makepkg: add missing newline from libprovides output This was a small oversight from 1917c845 which causes makepkg to write provides entries to the .PKGINFO file improperly, e.g. provides = systemdlibsystemdudev=999 Add a newline in the printf format to ensure that these are spaced appropriately. Signed-off-by: Dave Reisner Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index ffa3a34e..3345cbd3 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1145,7 +1145,7 @@ find_libprovides() { fi done - printf "%s" "${libprovides[@]}" + printf '%s\n' "${libprovides[@]}" } check_license() { -- cgit v1.2.3