mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
Libsec doesn't compile without a reduce script, either.
This commit is contained in:
parent
0b424d7bd7
commit
7025271a71
2 changed files with 13 additions and 2 deletions
|
@ -3,8 +3,6 @@ shift
|
|||
objtype=$1
|
||||
shift
|
||||
|
||||
nl='
|
||||
'
|
||||
for i in $*
|
||||
do
|
||||
j=`echo $i | sed 's/\.o//'`
|
||||
|
|
13
src/libsec/port/reduce
Normal file
13
src/libsec/port/reduce
Normal file
|
@ -0,0 +1,13 @@
|
|||
O=$1
|
||||
shift
|
||||
objtype=$1
|
||||
shift
|
||||
|
||||
for i in $*
|
||||
do
|
||||
j=`echo $i | sed 's/\.o//'`
|
||||
if test ! -f ../$objtype/$j.c -a ! -f ../$objtype/$j.s -a ! -f ../$objtype/$j.spp
|
||||
then
|
||||
echo $i
|
||||
fi
|
||||
done
|
Loading…
Reference in a new issue