diff options
author | Dave Reisner <dreisner@archlinux.org> | 2016-11-20 14:26:56 +0100 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2016-11-20 14:26:56 +0100 |
commit | 06fb38e846fd22a4daac5d129687d1c1e6c187fc (patch) | |
tree | 01539006b2bdb96edff9f13b2d28d7801b91f307 | |
parent | 757b511d71901a445f300f14ce8e54804d54724d (diff) | |
download | mkinitcpio-06fb38e846fd22a4daac5d129687d1c1e6c187fc.tar.gz mkinitcpio-06fb38e846fd22a4daac5d129687d1c1e6c187fc.tar.xz |
mkinitcpio: fixing quoting in call to initialize_buildroot
-rwxr-xr-x | mkinitcpio | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |