]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
expat: Move lib from /usr/lib to /lib.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Feb 2010 10:30:42 +0000 (11:30 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Feb 2010 10:30:42 +0000 (11:30 +0100)
pkgs/core/expat/expat.nm

index 3d81c1d72201ebc6dde4ddf2aae620733e929c94..e4e7ada34eebc3cc10733415c05d0437779a1dd7 100644 (file)
@@ -45,4 +45,10 @@ endef
 
 PKG_TARBALL    = $(THISAPP).tar.gz
 
-CONFIGURE_OPTIONS += --mandir=/usr/share
+CONFIGURE_OPTIONS += --libdir=/lib --mandir=/usr/share
+
+define STAGE_INSTALL_CMDS
+       rm -vf $(BUILDROOT)/lib/libexpat.so
+       -mkdir -pv $(BUILDROOT)/usr/lib
+       ln -svf ../../lib/libexpat.so.1 $(BUILDROOT)/usr/lib/libexpat.so
+endef