diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-04-08 23:08:37 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-04-08 23:08:37 +0200 |
commit | 7d5a62da64c0f1a61fb2ea7b0e76950e12b422cd (patch) | |
tree | 2a12fe59515d22438cbdd0369c61498510176ed1 /hurd/install-headers.in | |
parent | cd0fd36ff291a301e3c8e198b987d15bb2bc2486 (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-x | hurd/install-headers.in | 22 |
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 |