Remove CMake cache before reconfiguring
By removing the cache file, the packages of the non-core components are generate properly.
This commit is contained in:
@ -45,6 +45,7 @@ then
|
||||
for component in experimental devel client
|
||||
do
|
||||
cd _build
|
||||
rm CMakeCache.txt
|
||||
export LD_LIBRARY_PATH=""
|
||||
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
||||
export LD_LIBRARY_PATH=$(for i in `find $PWD/ -name '*.so*'`; do echo $(dirname $i); done|sort|uniq|xargs|sed -e 's/[[:space:]]/:/g')
|
||||
|
@ -40,6 +40,7 @@ then
|
||||
for component in experimental devel client
|
||||
do
|
||||
cd _build
|
||||
rm CMakeCache.txt
|
||||
cmake .. $cmake_flags -DTARGET_COMPONENT=$component
|
||||
sudo make package
|
||||
cd ..
|
||||
|
Reference in New Issue
Block a user