Subject: CVS commit: pkgsrc/mk/buildlink2
To: None <pkgsrc-changes@netbsd.org>
From: Johnny C. Lam <jlam@netbsd.org>
List: pkgsrc-changes
Date: 01/06/2003 06:30:13
Module Name: pkgsrc
Committed By: jlam
Date: Mon Jan 6 04:30:13 UTC 2003
Modified Files:
pkgsrc/mk/buildlink2: fake-la libtool-fix-la
Log Message:
Some changes for Bourne shells that don't match NetBSD's feature-set:
if ! test ...; then ...; fi
becomes:
if test ! ...; then ...; fi
and
if ! command; then ...; fi
becomes:
if command; then :; else ...; fi
This fixes PR 19690 by Frank Cusack <fcusack@fcusack.com>.
To generate a diff of this commit:
cvs rdiff -r1.3 -r1.4 pkgsrc/mk/buildlink2/fake-la
cvs rdiff -r1.14 -r1.15 pkgsrc/mk/buildlink2/libtool-fix-la
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.