Skip to content

Commit

Permalink
Fix missing shell quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-schwab committed Dec 18, 2024
1 parent b4ce84e commit 32cf57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -1816,7 +1816,7 @@ for RECIPEPATH in "${RECIPEFILES[@]}" ; do
echo "#!/bin/sh -e" > $BUILD_ROOT/.unpack.command
shellquote cd "$TOPDIR/SOURCES" >> $BUILD_ROOT/.unpack.command
echo >> $BUILD_ROOT/.unpack.command
if test -L $BUILD_ROOT/usr/bin/cpio -a $(readlink $BUILD_ROOT/usr/bin/cpio) = /bin/busybox ; then
if test -L $BUILD_ROOT/usr/bin/cpio && test "$(readlink $BUILD_ROOT/usr/bin/cpio)" = /bin/busybox ; then
rm -f $BUILD_ROOT/.build.unpackarchive
cp "$BUILD_DIR/unpackarchive" $BUILD_ROOT/.build.unpackarchive
echo -n 'perl /.build.unpackarchive --cpio < ' >> $BUILD_ROOT/.unpack.command
Expand Down

0 comments on commit 32cf57e

Please sign in to comment.