From b010efb52247c0db836073f271a586201ceeeb73 Mon Sep 17 00:00:00 2001 From: Konrad Rosenbaum Date: Fri, 2 Aug 2013 20:40:57 +0200 Subject: [PATCH] clean up better when building gpg --- aurora/build-gpg.sh | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/aurora/build-gpg.sh b/aurora/build-gpg.sh index e279f79..63e9483 100755 --- a/aurora/build-gpg.sh +++ b/aurora/build-gpg.sh @@ -2,7 +2,7 @@ set -e fmake(){ - echo -e 'all:\n\techo ok\n\ninstall:\n\techo ok\n\n' >./$1/Makefile + echo -e 'all:\n\techo ok\n\n%:\n\techo ok $@\n\n' >./$1/Makefile } echo Cleaning up old binaries @@ -11,6 +11,7 @@ rm -rf gpg cd gnupg echo Building GnuPG git clean -dfx +git reset --hard ./autogen.sh ./configure --disable-gnupg-iconv --enable-minimal --disable-card-support --disable-bzip2 --disable-exec --disable-keyserver-helpers --disable-nls --disable-asm --disable-rpath --disable-regex --with-included-zlib --with-libcurl=no --disable-threads --without-libiconv-prefix --without-libintl-prefix --with-libusb=no --with-readline=no --prefix=`pwd`/../gpg --enable-rsa fmake doc @@ -24,6 +25,7 @@ cd libgpg-error echo echo Building libgpg-error git clean -dfx +#git reset --hard ./autogen.sh ./configure --disable-static --enable-shared --disable-nls --disable-rpath --disable-languages --without-libiconv-prefix --without-libintl-prefix --prefix=`pwd`/../gpg fmake doc @@ -35,6 +37,7 @@ cd ../libassuan echo echo Building libassuan git clean -dfx +#git reset --hard ./autogen.sh ./configure --disable-static --enable-shared --with-libgpg-error-prefix=`pwd`/../gpg --prefix=`pwd`/../gpg fmake doc @@ -45,6 +48,7 @@ cd ../gpgme echo echo Building GPGME git clean -dfx +#git reset --hard ./autogen.sh ./configure --disable-static --enable-shared --disable-glibtest --disable-gpgsm-test --disable-gpgconf-test --disable-g13-test --with-gpg=`pwd`/../gpg/bin/gpg --prefix=`pwd`/../gpg --with-libassuan-prefix=`pwd`/../gpg --with-libgpg-error-prefix=`pwd`/../gpg fmake doc -- 1.7.2.5