diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-04-09 00:28:39 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-09 00:41:02 +0200 |
commit | 87c4fb51a460b10153c10297bfaea7e5c16a811b (patch) | |
tree | 2a2b8dc1fb2b9530b6bc7b0c441ac498fdd77c32 /scripts/makepkg.sh.in | |
parent | 62e8812fb9002bf2d737375003652bc6becc9f54 (diff) | |
download | pacman-87c4fb51a460b10153c10297bfaea7e5c16a811b.tar.gz pacman-87c4fb51a460b10153c10297bfaea7e5c16a811b.tar.xz |
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 <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |