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>
This commit is contained in:
Dave Reisner 2012-04-08 18:28:39 -04:00 committed by Dan McGee
parent 62e8812fb9
commit 87c4fb51a4
1 changed files with 1 additions and 1 deletions

View File

@ -1145,7 +1145,7 @@ find_libprovides() {
fi fi
done done
printf "%s" "${libprovides[@]}" printf '%s\n' "${libprovides[@]}"
} }
check_license() { check_license() {