mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
11 lines
334 B
Perl
11 lines
334 B
Perl
--- software/freebsd-lib.pl.orig 2015-03-13 23:51:49 UTC
|
|
+++ software/freebsd-lib.pl
|
|
@@ -21,7 +21,7 @@
|
|
|
|
sub use_pkg_ng
|
|
{
|
|
-return 0 if (!-x "/usr/sbin/pkg");
|
|
+return 0 if (!-e "/var/db/pkg/local.sqlite");
|
|
local @lines = split(/\n/, &backquote_command(
|
|
"/usr/sbin/pkg info 2>/dev/null </dev/null"));
|
|
return @lines > 1 ? 1 : 0;
|