jaromail

a commandline tool to easily and privately handle your e-mail
git clone git://parazyd.org/jaromail.git
Log | Files | Refs | Submodules | README

commit fafe19a41219f8ef8a57820d591836cc355b4e2c
parent c059211bc2897da1d19eaef1572a08db9c14fb14
Author: Jaromil <jaromil@dyne.org>
Date:   Wed, 13 Jun 2012 21:59:28 +0200

fixed compile on ubuntu for some reasons gcc wants source files before pkg-config

Diffstat:
Mbuild/build-gnu.sh | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/build/build-gnu.sh b/build/build-gnu.sh @@ -28,14 +28,14 @@ case $distro in cd - > /dev/null echo if [ -r /usr/bin/gnome-keyring ]; then - echo "gnome-keyring" \ + echo "Compiling gnome-keyring, need to install -dev packages" sudo apt-get install libglib2.0-dev libgnome-keyring-dev - cd src/gnome-keyring # [ -x jaro-gnome-keyring ] || \ - gcc `pkg-config --cflags --libs glib-2.0 gnome-keyring-1` \ - -O2 -o jaro-gnome-keyring jaro-gnome-keyring.c - cd - > /dev/null + gcc jaro-gnome-keyring.c \ + `pkg-config --cflags --libs glib-2.0 gnome-keyring-1` \ + -O2 -o jaro-gnome-keyring + cd - > /dev/null echo "Done compiling." echo "Now run ./install.sh and Jaro Mail will be ready in ~/Mail" echo "or \"./install.sh path\" to install it somewhere else."