diff --git a/src/minimal_overlay/bundles/c2048/02_build.sh b/src/minimal_overlay/bundles/c2048/02_build.sh index 17274501e..68ec5c6c0 100755 --- a/src/minimal_overlay/bundles/c2048/02_build.sh +++ b/src/minimal_overlay/bundles/c2048/02_build.sh @@ -8,7 +8,7 @@ cd $WORK_DIR/overlay/$BUNDLE_NAME rm -f 2048 -gcc $CFLAGS -Os -o 2048 2048.c +gcc $CFLAGS -o 2048 2048.c strip -g 2048 mkdir -p $OVERLAY_ROOTFS/usr/bin @@ -17,4 +17,3 @@ cp --remove-destination $PWD/2048 $OVERLAY_ROOTFS/usr/bin/ echo "Bundle 'c2048' has been installed." cd $SRC_DIR -