Skip to content

Commit

Permalink
fix(clib.json): fix 'install script'
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Sep 5, 2022
1 parent 452a1cd commit ec387ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clib.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"repo": "clibs/cmocka",
"description": "An elegant unit testing framework for C with support for mock objects.",
"keywords": ["mock", "unit", "test"],
"install": "mkdir -p build && cd build && cmake .. && make && make install"
"install": "mkdir -p build && cd build && cmake -DCMAKE_INSTALL_PREFIX=${PREFIX:-/usr/local} .. && make && make install && cd .. && rm -rf build"
}

0 comments on commit ec387ac

Please sign in to comment.