From: Michael Tremer Date: Wed, 17 Feb 2010 21:53:44 +0000 (+0100) Subject: Fix libxyz.so links of cryptsetup-luks, libgcrypt and libgpg-error. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c63b1910f31bf7b3b69d8a4a3ee7b17066e8ad28;p=ipfire-3.x.git Fix libxyz.so links of cryptsetup-luks, libgcrypt and libgpg-error. --- diff --git a/pkgs/core/cryptsetup-luks/cryptsetup-luks.nm b/pkgs/core/cryptsetup-luks/cryptsetup-luks.nm index 701afc186..854c5e65c 100644 --- a/pkgs/core/cryptsetup-luks/cryptsetup-luks.nm +++ b/pkgs/core/cryptsetup-luks/cryptsetup-luks.nm @@ -54,5 +54,5 @@ define STAGE_INSTALL_CMDS rm -rvf $(BUILDROOT)/lib/cryptsetup{,.la,.so} -mkdir -pv $(BUILDROOT)/usr/lib mv -v $(BUILDROOT)/lib/pkgconfig $(BUILDROOT)/usr/lib/ - ln -svf ../../lib/libcryptsetup.so.1.0.0 $(BUILDROOT)/usr/lib/libcryptsetup.so + ln -svf ../../lib/libcryptsetup.so.1 $(BUILDROOT)/usr/lib/libcryptsetup.so endef diff --git a/pkgs/core/libgcrypt/libgcrypt.nm b/pkgs/core/libgcrypt/libgcrypt.nm index 6bc250e7a..e6f0bdf8b 100644 --- a/pkgs/core/libgcrypt/libgcrypt.nm +++ b/pkgs/core/libgcrypt/libgcrypt.nm @@ -50,5 +50,5 @@ CONFIGURE_OPTIONS += \ define STAGE_INSTALL_CMDS -mkdir -pv $(BUILDROOT)/usr/lib rm -vf $(BUILDROOT)/lib/libgcrypt.so - ln -sfv ../../lib/libgcrypt.so.11.5.2 $(BUILDROOT)/usr/lib/libgcrypt.so + ln -sfv ../../lib/libgcrypt.so.11 $(BUILDROOT)/usr/lib/libgcrypt.so endef diff --git a/pkgs/core/libgpg-error/libgpg-error.nm b/pkgs/core/libgpg-error/libgpg-error.nm index 0e23681b5..b5603986a 100644 --- a/pkgs/core/libgpg-error/libgpg-error.nm +++ b/pkgs/core/libgpg-error/libgpg-error.nm @@ -43,10 +43,10 @@ endef PKG_TARBALL = $(THISAPP).tar.bz2 CONFIGURE_OPTIONS += \ - --libdir=/lib \ + --libdir=/lib define STAGE_INSTALL_CMDS -mkdir -pv $(BUILDROOT)/usr/lib rm -vf $(BUILDROOT)/lib/libgpg-error.so - ln -sfv ../../lib/libgpg-error.so.0.5.0 $(BUILDROOT)/usr/lib/libgpg-error.so + ln -sfv ../../lib/libgpg-error.so.0 $(BUILDROOT)/usr/lib/libgpg-error.so endef