From: Michael Tremer Date: Tue, 4 Aug 2009 19:31:36 +0000 (+0200) Subject: Fixed gnutls build instructions. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff0378a5e9595a5b6ef98227cca36c9e46348de4;p=ipfire-3.x.git Fixed gnutls build instructions. --- diff --git a/lfs/gnutls b/lfs/gnutls index d3b89550d..284698109 100644 --- a/lfs/gnutls +++ b/lfs/gnutls @@ -42,7 +42,7 @@ DEBUG = no BUILD_DEPS = DEPS = libgcrypt -URL = http://www.gnupg.org/ +URL = http://www.gnu.org/software/gnutls/ LICENSE = LGPLv2.1+ SHORT_DESC = A general-purpose cryptography library. @@ -81,18 +81,19 @@ $(objects): $(OBJECT): $(objects) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && \ ./configure \ $(CONFIGURE_ARCH) \ --prefix=/usr \ - --disable-static - --with-included-libcfg - --disable-srp-authentication + --disable-static \ + --with-included-libcfg \ + --disable-srp-authentication \ + cd $(DIR_APP) && make $(PARALLELISMFLAGS) cd $(DIR_APP) && make install - cd $(DIR_APP) && install -v -m755 -d /usr/share/doc/gnutls-2.8.1/reference - cd $(DIR_APP) && install -v -m644 doc/reference/html/* /usr/share/doc/gnutls-2.8.1/reference - cd $(DIR_APP) && install -v -m644 doc/*.{html,png,eps,pdf,ps} /usr/share/doc/gnutls-2.8.1 + + rm -fv /usr/lib/libgnutls*.la @rm -rf $(DIR_APP) @$(POSTBUILD)