tLibsec doesn't compile without a reduce script, either. - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 7025271a714583fc0b34f7c794a0a24e7241971d
DIR parent 0b424d7bd770a7767da58427e549022279a65d51
HTML Author: wkj <devnull@localhost>
Date: Wed, 21 Apr 2004 17:52:08 +0000
Libsec doesn't compile without a reduce script, either.
Diffstat:
M src/libmp/port/reduce | 2 --
A src/libsec/port/reduce | 13 +++++++++++++
2 files changed, 13 insertions(+), 2 deletions(-)
---
DIR diff --git a/src/libmp/port/reduce b/src/libmp/port/reduce
t@@ -3,8 +3,6 @@ shift
objtype=$1
shift
-nl='
-'
for i in $*
do
j=`echo $i | sed 's/\.o//'`
DIR diff --git a/src/libsec/port/reduce b/src/libsec/port/reduce
t@@ -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