From dcded7da4704ae66ebbb4343597868a7eb992aa7 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 21 Jul 2006 12:28:25 +0000 Subject: [PATCH] * Don't try to do DNS lookups. --- scripts/Makefile.am | 2 +- scripts/find-runtime-roots.pl.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 7b0aef061b..7f76a68a35 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -3,7 +3,7 @@ bin_SCRIPTS = nix-collect-garbage \ nix-install-package nix-channel nix-build \ nix-pack-closure nix-unpack-closure -noinst_SCRIPTS = nix-profile.sh generate-patches.pl +noinst_SCRIPTS = nix-profile.sh generate-patches.pl find-runtime-roots.pl nix-pull nix-push: readmanifest.pm readconfig.pm download-using-manifests.pl diff --git a/scripts/find-runtime-roots.pl.in b/scripts/find-runtime-roots.pl.in index 3e55ee4458..91520fe4ea 100644 --- a/scripts/find-runtime-roots.pl.in +++ b/scripts/find-runtime-roots.pl.in @@ -43,7 +43,7 @@ sub readProc { sub lsof { - return unless open LSOF, "lsof -b -w -F n |"; + return unless open LSOF, "lsof -n -w -F n |"; while () { next unless /^n (\/ .*)$/x;