Skip to content

Commit

Permalink
New line fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pablogs9 committed Dec 9, 2024
1 parent 260bd98 commit bc23bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/generate_lib/generic/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ pushd $FW_TARGETDIR/mcu_ws >/dev/null
done ; \
ar rc libmicroros.a $(ls *.o *.obj 2> /dev/null); mkdir -p $BUILD_DIR; cp libmicroros.a $BUILD_DIR; ranlib $BUILD_DIR/libmicroros.a; \
cp -R $FW_TARGETDIR/mcu_ws/install/include $BUILD_DIR/; \
rm $(find $BUILD_DIR/include -type f -not -name "*.h" -not -name "*.hpp") \
rm -rf $(find $BUILD_DIR/include -type d -empty) \
rm $(find $BUILD_DIR/include -type f -not -name "*.h" -not -name "*.hpp"); \
rm -rf $(find $BUILD_DIR/include -type d -empty); \
cd ..; rm -rf libmicroros;

popd >/dev/null

0 comments on commit bc23bda

Please sign in to comment.