Skip to content

Commit

Permalink
Fix #1285, Remove broken BUILDDIR reference
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Apr 8, 2021
1 parent 0850b19 commit 1ae46c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmake/Makefile.sample
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Core Flight Software CMake / GNU make wrapper
#
# ABOUT THIS MAKEFILE:
# This is actually part of the CMake alternative build system.
# It is a GNU-make wrapper that calls the CMake tools appropriately
# so that setting up a new build is fast and easy with no need to
# learn the CMake commands. It also makes it easier to integrate
Expand Down Expand Up @@ -124,7 +123,7 @@ install:

prep $(O)/.prep:
mkdir -p "$(O)"
(cd "$(O)/$(BUILDDIR)" && cmake $(PREP_OPTS) "$(CURDIR)/cfe")
(cd "$(O)" && cmake $(PREP_OPTS) "$(CURDIR)/cfe")
echo "$(PREP_OPTS)" > "$(O)/.prep"

clean:
Expand Down

0 comments on commit 1ae46c0

Please sign in to comment.