Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make_deb
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ if [[ $skip_build == 0 ]]; then
fi
echo "install fledge"
if [ "${ARCH_NAME}" = "armhf" ]; then
cd ${GIT_ROOT} && sudo make install USE_PIP_CACHE=yes && export FLEDGE_ROOT=/usr/local/fledge
cd ${GIT_ROOT} && sudo make install STRIP_EXEC=1 USE_PIP_CACHE=yes && export FLEDGE_ROOT=/usr/local/fledge
else
sudo ./requirements.sh
cd ${GIT_ROOT} && sudo make install && export FLEDGE_ROOT=/usr/local/fledge
cd ${GIT_ROOT} && sudo make install STRIP_EXEC=1 && export FLEDGE_ROOT=/usr/local/fledge
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion make_rpm
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ if [[ $skip_build == 0 ]]; then
set -e

make
sudo make install
sudo make install STRIP_EXEC=1

# Restores FLEDGE_ROOT
export FLEDGE_ROOT=${FLEDGE_ROOT_BCK}
Expand Down