diff --git a/infrastructure/package/check-newlib-depends b/infrastructure/package/check-newlib-depends index 60e111bd73e..f772fd3c074 100755 --- a/infrastructure/package/check-newlib-depends +++ b/infrastructure/package/check-newlib-depends @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $OpenBSD: check-newlib-depends,v 1.19 2006/11/11 13:11:45 espie Exp $ +# $OpenBSD: check-newlib-depends,v 1.20 2006/12/18 12:53:09 espie Exp $ # Copyright (c) 2004 Marc Espie # # Permission to use, copy, modify, and distribute this software for any @@ -169,7 +169,7 @@ sub get_plist # ask the ports tree my $portsdir = $ENV{PORTSDIR} || "/usr/ports"; my $make = $ENV{MAKE} || "make"; - open my $fh, "cd $portsdir && env -i SUBDIR=$pkgpath ECHO_MSG=: make print-plist |" or return undef; + open my $fh, "cd $portsdir && env -i SUBDIR=$pkgpath ECHO_MSG=: make print-plist-with-depends |" or return undef; my $plist = OpenBSD::PackingList->read($fh); close $fh; return $plist;