summaryrefslogtreecommitdiffstats
path: root/rules/cross-libtool.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2012-11-19 14:21:41 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2012-11-19 14:22:37 +0100
commitbeae5c667a7f11d1631f69321d6201eac5003465 (patch)
tree1f6aac5b6f7f2db25db53c9e08f297035b1d7412 /rules/cross-libtool.make
parentfffcf328f784627ffcc60571c8e1f3263cf06ed9 (diff)
downloadptxdist-beae5c667a7f11d1631f69321d6201eac5003465.tar.gz
ptxdist-beae5c667a7f11d1631f69321d6201eac5003465.tar.xz
cross-libtool: remove duplicate package
use host-autotools-libtool instead Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/cross-libtool.make')
-rw-r--r--rules/cross-libtool.make47
1 files changed, 0 insertions, 47 deletions
diff --git a/rules/cross-libtool.make b/rules/cross-libtool.make
deleted file mode 100644
index 97bdb16da..000000000
--- a/rules/cross-libtool.make
+++ /dev/null
@@ -1,47 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2008 by Michael Olbrich <m.olbrich@pengutronix.de>
-#
-# See CREDITS for details about who has contributed to this project.
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-LAZY_PACKAGES-$(PTXCONF_CROSS_LIBTOOL) += cross-libtool
-
-#
-# Paths and names
-#
-CROSS_LIBTOOL = $(LIBLTDL)
-CROSS_LIBTOOL_MD5 = $(LIBLTDL_MD5)
-CROSS_LIBTOOL_DIR = $(CROSS_BUILDDIR)/$(LIBLTDL)
-CROSS_LIBTOOL_SOURCE = $(LIBLTDL_SOURCE)
-CROSS_LIBTOOL_DEVPKG = NO
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-# We really only need the libtool script and it should default to $(CROSS_CC)
-# as compiler. So we configure libtool for the target and only create and
-# install the scripts.
-
-CROSS_LIBTOOL_CONF_ENV := \
- $(CROSS_ENV)
-
-#
-# autoconf
-#
-CROSS_LIBTOOL_AUTOCONF := \
- --prefix=$(PTXCONF_SYSROOT_CROSS) \
- --host=$(PTXCONF_GNU_TARGET) \
- --build=$(GNU_HOST)
-
-CROSS_LIBTOOL_MAKE_OPT := libtool libtoolize
-CROSS_LIBTOOL_INSTALL_OPT := install-binSCRIPTS
-
-# vim: syntax=make