From c29ac899da1549fee15de594078d1854cccd82a1 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 13 Jul 1988 18:32:06 +0000 Subject: [PATCH] added -L flag --- mach/i80/libmon/compmodule | 2 +- mach/i86/libsys/compmodule | 2 +- mach/m68020/libsys/compmodule | 2 +- mach/m68k2/libsys/compmodule | 2 +- mach/m68k4/libsys/compmodule | 2 +- mach/mantra/libsys/compmodule | 2 +- mach/ns/libsys/compmodule | 2 +- mach/pdp/libsys/compmodule | 2 +- mach/pmds/libsys/compmodule | 2 +- mach/pmds4/libsys/compmodule | 2 +- mach/xenix3/libsys/compmodule | 2 +- mach/z80/libmon/compmodule | 2 +- mach/z80/libsys/compmodule | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/mach/i80/libmon/compmodule b/mach/i80/libmon/compmodule index 2e87032ca..de15217c3 100755 --- a/mach/i80/libmon/compmodule +++ b/mach/i80/libmon/compmodule @@ -1,4 +1,4 @@ -if i80 -c $1 1>&2 +if i80 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/i86/libsys/compmodule b/mach/i86/libsys/compmodule index 8ec2f6722..702339021 100755 --- a/mach/i86/libsys/compmodule +++ b/mach/i86/libsys/compmodule @@ -1,4 +1,4 @@ -if i86 -c $1 1>&2 +if i86 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/m68020/libsys/compmodule b/mach/m68020/libsys/compmodule index a61e867bb..58dc66c61 100755 --- a/mach/m68020/libsys/compmodule +++ b/mach/m68020/libsys/compmodule @@ -1,4 +1,4 @@ -if m68020 -c $1 1>&2 +if m68020 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/m68k2/libsys/compmodule b/mach/m68k2/libsys/compmodule index 02105f215..bfdaef6dc 100755 --- a/mach/m68k2/libsys/compmodule +++ b/mach/m68k2/libsys/compmodule @@ -1,4 +1,4 @@ -if m68k2 -c $1 1>&2 +if m68k2 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/m68k4/libsys/compmodule b/mach/m68k4/libsys/compmodule index 80f42aab3..d80f03d43 100755 --- a/mach/m68k4/libsys/compmodule +++ b/mach/m68k4/libsys/compmodule @@ -1,4 +1,4 @@ -if m68k4 -c $1 1>&2 +if m68k4 -L -c $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/mantra/libsys/compmodule b/mach/mantra/libsys/compmodule index 14b4df640..48038e37e 100755 --- a/mach/mantra/libsys/compmodule +++ b/mach/mantra/libsys/compmodule @@ -1,4 +1,4 @@ -if mantra -c $1 1>&2 +if mantra -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/ns/libsys/compmodule b/mach/ns/libsys/compmodule index adf99ccef..e32bc096e 100755 --- a/mach/ns/libsys/compmodule +++ b/mach/ns/libsys/compmodule @@ -1,4 +1,4 @@ -if ns -c $1 1>&2 +if ns -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/pdp/libsys/compmodule b/mach/pdp/libsys/compmodule index 32b04832a..da10f2f6d 100755 --- a/mach/pdp/libsys/compmodule +++ b/mach/pdp/libsys/compmodule @@ -1,4 +1,4 @@ -if pdp -O -c -I../../../h -I. $1 1>&2 +if pdp -L -O -c -I../../../h -I. $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/pmds/libsys/compmodule b/mach/pmds/libsys/compmodule index 38b533558..02a021735 100755 --- a/mach/pmds/libsys/compmodule +++ b/mach/pmds/libsys/compmodule @@ -1,4 +1,4 @@ -if pmds -c $1 1>&2 +if pmds -L -c $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/pmds4/libsys/compmodule b/mach/pmds4/libsys/compmodule index c5b59be99..8d98a6d81 100755 --- a/mach/pmds4/libsys/compmodule +++ b/mach/pmds4/libsys/compmodule @@ -1,4 +1,4 @@ -if pmds4 -c $1 1>&2 +if pmds4 -L -c $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/xenix3/libsys/compmodule b/mach/xenix3/libsys/compmodule index e1c76ed16..d963eafb4 100755 --- a/mach/xenix3/libsys/compmodule +++ b/mach/xenix3/libsys/compmodule @@ -1,4 +1,4 @@ -if xenix3 -c $1 1>&2 +if xenix3 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/z80/libmon/compmodule b/mach/z80/libmon/compmodule index ec9d18f34..97ebc5696 100755 --- a/mach/z80/libmon/compmodule +++ b/mach/z80/libmon/compmodule @@ -1,4 +1,4 @@ -if z80 -c $1 1>&2 +if z80 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi diff --git a/mach/z80/libsys/compmodule b/mach/z80/libsys/compmodule index ec9d18f34..97ebc5696 100755 --- a/mach/z80/libsys/compmodule +++ b/mach/z80/libsys/compmodule @@ -1,4 +1,4 @@ -if z80 -c $1 1>&2 +if z80 -c -L $1 1>&2 then echo `basename $1 $2`.o else exit 1 fi -- 2.34.1