mirror of
https://github.com/uutils/coreutils
synced 2024-11-13 00:17:09 +00:00
Fix #842
This commit is contained in:
parent
97fcf9026c
commit
c0a9e1f0eb
1 changed files with 3 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -10,6 +10,8 @@ ifeq ($(PROFILE),release)
|
|||
PROFILE_CMD = --release
|
||||
endif
|
||||
|
||||
RM := rm -rf
|
||||
|
||||
# Binaries
|
||||
CARGO ?= cargo
|
||||
CARGOFLAGS ?=
|
||||
|
@ -278,7 +280,7 @@ busytest: $(BUILDDIR)/busybox $(addprefix test_busybox_,$(filter-out $(SKIP_UTIL
|
|||
endif
|
||||
|
||||
clean:
|
||||
$(RM) -rf $(BUILDDIR)
|
||||
$(RM) $(BUILDDIR)
|
||||
|
||||
distclean: clean
|
||||
$(CARGO) clean $(CARGOFLAGS) && $(CARGO) update $(CARGOFLAGS)
|
||||
|
|
Loading…
Reference in a new issue