Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(simple_make.sh): add sqlite dependencies for Fedora
Browse files Browse the repository at this point in the history
Thanks to @linux-modder for suggestion.

Also fix local install in bootstrap.sh of sqlcipher ending prematurely.
  • Loading branch information
zetok committed May 10, 2016
1 parent 8d225a8 commit 5cb271b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ if [[ $INSTALL_SQLCIPHER = "true" ]]; then
CFLAGS="-DSQLITE_HAS_CODEC"
make -j$(nproc)
make install || \
echo ""
echo "Sqlcipher failed to install locally."
echo ""
echo "Try without \"-l|--local\""
echo "" && \
echo "Sqlcipher failed to install locally." && \
echo "" && \
echo "Try without \"-l|--local\"" && \
exit 1
else
./configure \
Expand Down
2 changes: 1 addition & 1 deletion simple_make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ elif which dnf; then
git qt-devel qt-doc qt-creator qt5-qtsvg qt5-qtsvg-devel \
openal-soft-devel qt5-qttools-devel libXScrnSaver-devel \
qrencode-devel opus-devel libvpx-devel glib2-devel gdk-pixbuf2-devel \
gtk2-devel libsodium-devel ffmpeg-devel
gtk2-devel libsodium-devel ffmpeg-devel sqlite sqlite-devel
elif which zypper; then
sudo zypper in \
git patterns-openSUSE-devel_basis libqt5-qtbase-common-devel \
Expand Down

0 comments on commit 5cb271b

Please sign in to comment.