diff options
author | roger <roger@FreeBSD.org> | 1999-06-12 15:08:50 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 1999-06-12 15:08:50 +0000 |
commit | 4a31cbf0984411b874c55f732af61ed062c34a72 (patch) | |
tree | 021bdbc971690cb70e167081726474b9d7ccf9ae /sys/modules/bktr | |
parent | 33418bb41d2c52fd4fdae9602722521ed20585e7 (diff) | |
download | FreeBSD-src-4a31cbf0984411b874c55f732af61ed062c34a72.zip FreeBSD-src-4a31cbf0984411b874c55f732af61ed062c34a72.tar.gz |
Change perl5 to perl (same change as made in the fxp module)
Diffstat (limited to 'sys/modules/bktr')
-rw-r--r-- | sys/modules/bktr/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/modules/bktr/Makefile b/sys/modules/bktr/Makefile index 82ca729..f74deb7 100644 --- a/sys/modules/bktr/Makefile +++ b/sys/modules/bktr/Makefile @@ -9,7 +9,7 @@ # Note - as the driver requires contiguous memory, loading the driver once # memory has filled or become fragmented may fail. -# $Id$ +# $Id: Makefile,v 1.1 1999/06/12 15:00:19 roger Exp $ S = ${.CURDIR}/../.. .PATH: $S/pci @@ -25,7 +25,7 @@ pci.h: echo "#define NPCI 1" > pci.h smbus.h: - # Do not use SMBUS/IICBUS. Use the old i2c code self contained in + # Does not use SMBUS/IICBUS. Uses the old i2c code self contained in # the bt848 driver. echo "#define NSMBUS 0" > smbus.h @@ -36,12 +36,12 @@ opt_bktr.h: touch opt_bktr.h device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m - perl5 $S/kern/makedevops.pl -h $S/kern/device_if.m + perl $S/kern/makedevops.pl -h $S/kern/device_if.m bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m - perl5 $S/kern/makedevops.pl -h $S/kern/bus_if.m + perl $S/kern/makedevops.pl -h $S/kern/bus_if.m pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m - perl5 $S/kern/makedevops.pl -h $S/pci/pci_if.m + perl $S/kern/makedevops.pl -h $S/pci/pci_if.m .include <bsd.kmod.mk> |