diff options
| author | Charlie Sharpsteen | 2012-06-29 22:58:28 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-06-29 22:59:26 -0800 |
| commit | 4de6cfccbc6951cabe43f5f9ed407d8926f0ec52 (patch) | |
| tree | 667d237344c6c1791d4c4289fbc71ddcb84f9de6 /Library/Formula | |
| parent | 5b364d475f28cb59750832b768326ec4c7ef8f24 (diff) | |
| download | homebrew-4de6cfccbc6951cabe43f5f9ed407d8926f0ec52.tar.bz2 | |
netcdf: Use correct seperator when prepending PATH
Fixes a buglet discovered in #13050.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/netcdf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/netcdf.rb b/Library/Formula/netcdf.rb index 8c80ee304..649652698 100644 --- a/Library/Formula/netcdf.rb +++ b/Library/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}" |
