aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-08 04:36:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-05-08 04:36:04 +0000
commitf8599f92e7057fb38dc7acf3639c06a348111ad4 (patch)
treec40c26af81d6150ec2e55fec1436b70f3fa770d1 /configure.in
parentb4b9183ffc44b03a12d7a4c3abfdc8bf9d197454 (diff)
downloadruby-f8599f92e7057fb38dc7acf3639c06a348111ad4.tar.gz
configure.in: fix for BSD make
* configure.in (POSTLINK): default to : command to get rid of flag only command, since BSD make does not work with it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 70fedcf9b0..d0043b824e 100644
--- a/configure.in
+++ b/configure.in
@@ -1003,6 +1003,8 @@ AC_ARG_ENABLE(pthread,
dnl Checks for libraries.
AS_CASE(["$target_os"],[*bsd*|dragonfly*],[],[ac_cv_func_daemon=no])
+POSTLINK=:
+AC_SUBST(POSTLINK)
AS_CASE(["$target_os"],
[nextstep*], [ ],
[openstep*], [ ],
@@ -1062,7 +1064,6 @@ main()
if test "${RUBY_CODESIGN:+set}"; then
AC_CHECK_PROGS(codesign, codesign)
POSTLINK="$ac_cv_prog_codesign -s '$RUBY_CODESIGN' -f \$@"
- AC_SUBST(POSTLINK)
fi
],
[hpux*], [ LIBS="-lm $LIBS"