summaryrefslogtreecommitdiff
path: root/hurd/install-headers.in
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-04-08 23:08:37 +0200
committerThomas Schwinge <thomas@codesourcery.com>2012-04-08 23:08:37 +0200
commit7d5a62da64c0f1a61fb2ea7b0e76950e12b422cd (patch)
tree2a12fe59515d22438cbdd0369c61498510176ed1 /hurd/install-headers.in
parentcd0fd36ff291a301e3c8e198b987d15bb2bc2486 (diff)
Remove hurd/install-headers.
* hurd/configure: Remove file. * hurd/configure.ac: Likewise. * hurd/install-headers.in: Likewise.
Diffstat (limited to 'hurd/install-headers.in')
-rwxr-xr-xhurd/install-headers.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/hurd/install-headers.in b/hurd/install-headers.in
deleted file mode 100755
index 99d35833..00000000
--- a/hurd/install-headers.in
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh -e
-# @configure_input@
-#
-# This is a trivial script for those who aren't comfortable typing:
-# cp hurd/*.h hurd/*.defs /usr/local/i686-gnu/include/hurd/
-# by themselves. That is, it copies the essential Hurd header files
-# into $(includedir) before you attempt to build the Hurd itself.
-# In addition to installing Mach headers, this is sufficient to bootstrap
-# an empty cross-compilation environment such that glibc can be compiled.
-
-srcdir=@srcdir@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-includedir=@includedir@
-
-INSTALL="@INSTALL@"
-INSTALL_DATA="@INSTALL_DATA@"
-
-${srcdir}/../mkinstalldirs ${includedir}/hurd
-for file in `cd ${srcdir}; echo *.h *.defs`; do
- ${INSTALL_DATA} ${file} ${includedir}/hurd/${file}
-done