Skip to content

Commit d981fe4

Browse files
authored
Merge pull request #1286 from skliper/fix1285-builddir-makeref
Fix #1285, Remove broken BUILDDIR reference
2 parents 27c49a1 + 1ae46c0 commit d981fe4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cmake/Makefile.sample

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# Core Flight Software CMake / GNU make wrapper
33
#
44
# ABOUT THIS MAKEFILE:
5-
# This is actually part of the CMake alternative build system.
65
# It is a GNU-make wrapper that calls the CMake tools appropriately
76
# so that setting up a new build is fast and easy with no need to
87
# learn the CMake commands. It also makes it easier to integrate
@@ -124,7 +123,7 @@ install:
124123

125124
prep $(O)/.prep:
126125
mkdir -p "$(O)"
127-
(cd "$(O)/$(BUILDDIR)" && cmake $(PREP_OPTS) "$(CURDIR)/cfe")
126+
(cd "$(O)" && cmake $(PREP_OPTS) "$(CURDIR)/cfe")
128127
echo "$(PREP_OPTS)" > "$(O)/.prep"
129128

130129
clean:

0 commit comments

Comments
 (0)