@@ -1,6 +1,8 @@
# Makefile for uClibc
#
-# Licensed under LGPL v2.1, see the file COPYING.LIB in this tarball for details.
+# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
+#
+# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
TOPDIR=../../../
TOPDIR=../../../../
TOPDIR=../
TOPDIR=../../
@@ -1,6 +1,11 @@
#! /bin/sh
-# Creates the minimally necessary links to build w/ the Makefile.in files
+
+# 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"
@@ -1,21 +1,9 @@
#!/bin/sh
-# Copyright (C) 2003 Erik Andersen <andersen@uclibc.org>
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later
-# version.
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Library General Public License for more details.
-# You should have received a copy of the GNU Library General
-# Public License along with this program; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-# Boston, MA 02111-1307 USA
usage () {
echo ""
@@ -1,5 +1,11 @@
+# Copyright (C) 2001 Manuel Novoa III <mjn3@uclibc.org>
# June 27, 2001 Manuel Novoa III
# This script expects TOPDIR and CC (as used in the Makefiles) to be set in
@@ -1,4 +1,10 @@
# Script to replicate the `getent` binary that comes with glibc
search_entry() {
@@ -1,26 +1,16 @@
+# Copyright 2003 Alexandre Oliva <aoliva@redhat.com>
# This script computes a relative pathname from $1 to $2
# They are assumed to not contain . or .. pathname components,
# but if both directories exist and cd/pwd canonicalizes pathnames,
# this shouldn't matter. PWD_CMD may be set to some pwd command that does.
-# Copyright 2003 Alexandre Oliva <aoliva@redhat.com>
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation, Inc.,
-# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from=`(cd $1 > /dev/null && ${PWD_CMD-pwd} || echo $1) 2>/dev/null | sed 's,//*,/,g;s,/*$,,'`
target=`(cd $2 > /dev/null && ${PWD_CMD-pwd} || echo $2) 2>/dev/null | sed 's,//*,/,g;s,/*$,,'`