Skip to content

Commit

Permalink
cmake: Fix example project update command
Browse files Browse the repository at this point in the history
Since commit 9147917 (Refactor external project logic, 2016-07-22)
we accidentally used the computed download command as the update
command for examples.  Fix the variable reference.
  • Loading branch information
bradking committed Aug 10, 2016
1 parent 7d24c9a commit 47bd55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/examples.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function(drake_add_example EXAMPLE DEFAULT_ENABLED DOCSTRING)
SOURCE_DIR ${PROJECT_SOURCE_DIR}/drake/examples/${EXAMPLE}
DOWNLOAD_COMMAND ${_ex_DOWNLOAD_COMMAND}
DOWNLOAD_DIR ${PROJECT_SOURCE_DIR}
UPDATE_COMMAND ${_ex_DOWNLOAD_COMMAND}
UPDATE_COMMAND ${_ex_UPDATE_COMMAND}
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND "")
Expand Down

0 comments on commit 47bd55f

Please sign in to comment.