Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.)

This commit is contained in:
dtrg
2006-07-18 16:45:57 +00:00
40 changed files with 73 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Compile and make dependencies. First argument is the file on which the

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Compile and make dependencies. First argument is the file on which the
@@ -16,5 +17,5 @@ do
;;
esac
done
$UTIL_HOME/lib.bin/cpp -d -m $cpp_args > $n
$UTIL_HOME/lib.bin/cpp -d -m $cpp_args > $n 2>/dev/null
exec $CC $*

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Compile and make dependencies. First argument is the file on which the

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Produce dependencies for all argument files

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Resolve name clashes in the files on the argument list. If these

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Create a lint library file. The name of the library file is constructed

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: '$Id$'
: Create a lint library file. The name of the library file is constructed

View File

@@ -1,3 +1,5 @@
#!/bin/sh
num=`expr $1 : '.*\.\([1-8]\)'`
if [ -d $2/man ] ; then : ; else mkdir $2/man ; fi

View File

@@ -1,3 +1,4 @@
#!/bin/sh
: $Id$
: remove dependencies from a makefile, write result on standard output.