From cf36165d87f08798b2fd94fb27d660ab0e9bd5dd Mon Sep 17 00:00:00 2001 From: Jim Wise Date: Wed, 9 Nov 2011 09:18:02 -0500 Subject: [PATCH] Adjust for NetBSD location of perl. NetBSD does not ship with perl by default, but if it's present, it will be in /usr/pkg/bin. Would be nice to find another portable way to do this. --- tests/run-program.impure.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-program.impure.lisp b/tests/run-program.impure.lisp index 5c8b988..8eae0d0 100644 --- a/tests/run-program.impure.lisp +++ b/tests/run-program.impure.lisp @@ -271,7 +271,7 @@ (let ((had-error-p nil)) (flet ((barf (&optional (format :default)) (with-output-to-string (stream) - (run-program "/usr/bin/perl" + (run-program #-netbsd "/usr/bin/perl" #+netbsd "/usr/pkg/bin/perl" '("-e" "print \"\\x20\\xfe\\xff\\x0a\"") :output stream :external-format format))) -- 1.7.10.4