From 8afe1991709c1a507d269f3fa2593afc9b11b331 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Fri, 29 Jun 2012 22:58:28 -0800 Subject: [PATCH] netcdf: Use correct seperator when prepending PATH Fixes a buglet discovered in Homebrew/homebrew#13050. --- Formula/netcdf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/netcdf.rb b/Formula/netcdf.rb index 8c80ee3043..6496526983 100644 --- a/Formula/netcdf.rb +++ b/Formula/netcdf.rb @@ -52,7 +52,7 @@ class Netcdf < Formula # Add newly created installation to paths so that binding libraries can # find the core libs. - ENV.prepend 'PATH', bin + ENV.prepend 'PATH', bin, ':' ENV.prepend 'CPPFLAGS', "-I#{include}" ENV.prepend 'LDFLAGS', "-L#{lib}"