summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Kconfig1
-rw-r--r--rules/host-fake-makeinfo.in2
-rw-r--r--rules/host-fake-makeinfo.make32
3 files changed, 35 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 68991f2..21fff92 100644
--- a/Kconfig
+++ b/Kconfig
@@ -68,6 +68,7 @@ source "workspace/rules/kernel-headers.in"
source "workspace/rules/cross-gcc.in"
source "workspace/rules/cross-gdb.in"
source "workspace/rules/cross-toolchain.in"
+source "workspace/rules/host-fake-makeinfo.in"
source "workspace/rules/host-cloog.in"
source "workspace/rules/host-expat.in"
source "workspace/rules/host-gmp.in"
diff --git a/rules/host-fake-makeinfo.in b/rules/host-fake-makeinfo.in
new file mode 100644
index 0000000..55c4d8f
--- /dev/null
+++ b/rules/host-fake-makeinfo.in
@@ -0,0 +1,2 @@
+config HOST_FAKE_MAKEINFO
+ bool
diff --git a/rules/host-fake-makeinfo.make b/rules/host-fake-makeinfo.make
new file mode 100644
index 0000000..94be265
--- /dev/null
+++ b/rules/host-fake-makeinfo.make
@@ -0,0 +1,32 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 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
+#
+HOST_PACKAGES-$(PTXCONF_HOST_FAKE_MAKEINFO) += host-fake-makeinfo
+
+#
+# Paths and names
+#
+HOST_FAKE_MAKEINFO := fake-makeinfo
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/host-fake-makeinfo.install:
+ @$(call targetinfo)
+ install -d $(HOST_FAKE_MAKEINFO_PKGDIR)/bin
+ echo 'if [ "$${1}" == "--version" ]; then echo "makeinfo (GNU texinfo) 5.2"; fi' > $(HOST_FAKE_MAKEINFO_PKGDIR)/bin/makeinfo
+ chmod +x $(HOST_FAKE_MAKEINFO_PKGDIR)/bin/makeinfo
+ @$(call touch)
+
+# vim: syntax=make