summaryrefslogtreecommitdiff
path: root/extra/scripts/create_links.sh
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-10-29 10:11:58 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-10-29 10:11:58 +0000
commita4753b1da2c2a1f7de691619a52e2934d2c248ac (patch)
tree6a3ac93b6180f9b4a62760f2dd027f89a38ce41c /extra/scripts/create_links.sh
parent26661de6060091797e899a65e3a462edfbf74f3b (diff)
Renamed script to create_makefiles.sh, copy instead of link (to allow cygwin users to build), creates all Makefiles now, should be only used if the master copies are updated
Diffstat (limited to 'extra/scripts/create_links.sh')
-rwxr-xr-xextra/scripts/create_links.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/extra/scripts/create_links.sh b/extra/scripts/create_links.sh
deleted file mode 100755
index 606890c5d..000000000
--- a/extra/scripts/create_links.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /bin/sh
-#
-# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
-#
-# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
-#
-
-# Creates the necessary links to build w/ the Makefile.in files
-
-DIRS="ldso libc libcrypt libintl libm libnsl libpthread libresolv librt libutil"
-DIRS2="ldso/ldso ldso/libdl libpthread/linuxthreads libpthread/linuxthreads_db"
-
-for x in ${DIRS} ; do
- find ${x} -type f -name Makefile -exec rm -f {} \;
- ln -sf ../extra/scripts/Makefile.libs.lvl1 ${x}/Makefile
-done
-
-for x in ${DIRS2} ; do
- ln -sf ../../extra/scripts/Makefile.libs.lvl2 ${x}/Makefile
-done
-
-ln -sf ../../../extra/scripts/Makefile.objs.lvl3 libc/sysdeps/linux/Makefile
-ln -sf ../../extra/scripts/Makefile.objs.lvl2 libc/string/Makefile
-
-rm -f Makefile
-ln -sf Makefile.in Makefile
-
-exit 0