Skip to content

Commit

Permalink
[minor] Use same variable in Makevars file (#358)
Browse files Browse the repository at this point in the history
* use the same variable as in other Makevars templates

* ci fix: snapshot updated

---------

Co-authored-by: Ilia Kosenkov <[email protected]>
  • Loading branch information
CGMossa and Ilia-Kosenkov authored Sep 7, 2024
1 parent c6d35e1 commit 85f0733
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inst/templates/Makevars
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ C_clean:
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS)

clean:
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) rust/target
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) $(TARGET_DIR)
2 changes: 1 addition & 1 deletion tests/testthat/_snaps/use_cran_defaults.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS)
clean:
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) rust/target
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) $(TARGET_DIR)

---

Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/_snaps/use_extendr.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS)
clean:
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) rust/target
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) $(TARGET_DIR)

---

Expand Down Expand Up @@ -284,5 +284,5 @@
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS)
clean:
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) rust/target
rm -Rf $(SHLIB) $(STATLIB) $(OBJECTS) $(TARGET_DIR)

0 comments on commit 85f0733

Please sign in to comment.