From 06fb38e846fd22a4daac5d129687d1c1e6c187fc Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 20 Nov 2016 08:26:56 -0500 Subject: mkinitcpio: fixing quoting in call to initialize_buildroot --- mkinitcpio | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkinitcpio b/mkinitcpio index 7401285..14465bf 100755 --- a/mkinitcpio +++ b/mkinitcpio @@ -442,7 +442,7 @@ if [[ $KERNELVERSION != 'none' ]]; then [[ -d $_d_kmoduledir ]] || die "'$_d_kmoduledir' is not a valid kernel module directory" fi -_d_workdir=$(initialize_buildroot "$KERNELVERSION" $_opttargetdir) || cleanup 1 +_d_workdir=$(initialize_buildroot "$KERNELVERSION" "$_opttargetdir") || cleanup 1 BUILDROOT=${_opttargetdir:-$_d_workdir/root} . "$_f_config" || die "Failed to read configuration \`%s'" "$_f_config" -- cgit v1.2.3-24-g4f1b