now we use -Wl,rpath,/some/path rather than -Wl,rpath=/some/path because the latter does not work on platforms like Mac OS X.

This commit is contained in:
agentzh (章亦春) 2011-03-29 14:47:51 +08:00
parent 9e4a02acd6
commit df07bfb081
2 changed files with 2 additions and 2 deletions

2
util/configure vendored
View File

@ -167,7 +167,7 @@ my $ngx_prefix = "$prefix/nginx";
my $resty_opts = build_resty_opts(\%resty_opts);
if (@ngx_rpaths) {
unshift @ngx_ld_opts, "-Wl,-rpath=" . join(":", @ngx_rpaths);
unshift @ngx_ld_opts, "-Wl,-rpath," . join(":", @ngx_rpaths);
}
my $ld_opts = '';

View File

@ -1,7 +1,7 @@
#!/bin/bash
main_ver=0.8.54
minor_ver=3rc1
minor_ver=3rc2
version=$main_ver.$minor_ver
echo $version