diff options
author | jlam <jlam@pkgsrc.org> | 2001-11-25 18:01:58 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-11-25 18:01:58 +0000 |
commit | 3e280f70a3333564b87239272bcc8f50c5699f66 (patch) | |
tree | 9ed4331d71cdebf312a218e5b291c3b8b6e69e24 /comms/p5-Device-SerialPort/Makefile | |
parent | 1996e6b34596d6c781f5fb3bb50d15e6f2cdaa62 (diff) | |
download | pkgsrc-3e280f70a3333564b87239272bcc8f50c5699f66.tar.gz |
Don't hardcode /dev/tty00 as the serial device; use ${DEFAULT_SERIAL_DEVICE}
instead. This has no user-visible effect, as the serial device name is
only used for the test framework.
Diffstat (limited to 'comms/p5-Device-SerialPort/Makefile')
-rw-r--r-- | comms/p5-Device-SerialPort/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/comms/p5-Device-SerialPort/Makefile b/comms/p5-Device-SerialPort/Makefile index a234abd9904..24446088e4a 100644 --- a/comms/p5-Device-SerialPort/Makefile +++ b/comms/p5-Device-SerialPort/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/10/18 15:20:04 veego Exp $ +# $NetBSD: Makefile,v 1.4 2001/11/25 18:01:58 jlam Exp $ # DISTNAME= Device-SerialPort-0.070 @@ -15,7 +15,9 @@ COMMENT= POSIX-based Perl module to control your serial port USE_PERL5= # defined PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Device/SerialPort/.packlist +MAKE_PARAMS= ${DEFAULT_SERIAL_DEVICE} + do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL ${MAKE_PARAMS} .include "../../mk/bsd.pkg.mk" |