Skip to content
This repository was archived by the owner on Dec 26, 2022. It is now read-only.

Commit 3e9e415

Browse files
howjmayjserv
authored andcommitted
fix(build): Fix wrong Makefile clean rule
The top level Makefile clean rule directed to a wrong directory.
1 parent 2bb354e commit 3e9e415

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $(MOSQITTO_LIB): $(MOSQITTO_DIR)
2323

2424
clean:
2525
$(MAKE) -C $(DCURL_DIR) clean
26-
$(MAKE) -C $(MOSQITTO_LIB) clean
26+
$(MAKE) -C $(MOSQITTO_DIR) clean
2727

2828
distclean: clean
2929
$(RM) -r $(DCURL_DIR)

0 commit comments

Comments
 (0)