Skip to content

Commit

Permalink
Bugfix on folder removal (#250)
Browse files Browse the repository at this point in the history
atomic patch no more deletes current working directory
  • Loading branch information
shvass authored Sep 9, 2024
1 parent 37d75e8 commit 002cbc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libmicroros.mk
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ ifeq ($(IDF_TARGET),$(filter $(IDF_TARGET),esp32s2 esp32c3))
fi; \
$(X_AR) rc -s librcutils.a *.obj; \
cp -rf librcutils.a $(UROS_DIR)/install/lib/librcutils.a; \
rm -rf $(UROS_DIR)/atomic_workaround; \
cd ..;
cd ..; \
rm -rf $(UROS_DIR)/atomic_workaround;
endif

$(EXTENSIONS_DIR)/libmicroros.a: $(EXTENSIONS_DIR)/micro_ros_src/install patch_atomic
Expand Down

0 comments on commit 002cbc1

Please sign in to comment.