Skip to content

Commit f1e4777

Browse files
committed
* configure.in: use $@ instead of $(.TARGET) because .TARGET is not
supported by GNU make. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 044ef87 commit f1e4777

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Thu Jan 30 14:45:49 2014 Shugo Maeda <shugo@ruby-lang.org>
2+
3+
* configure.in: use $@ instead of $(.TARGET) because .TARGET is not
4+
supported by GNU make.
5+
16
Thu Jan 30 08:26:21 2014 Yusuke Endoh <mame@tsg.ne.jp>
27

38
* ext/fiddle/closure.c: use sizeof(*pcl) for correct sizeof value.

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2664,7 +2664,7 @@ if test "$with_dln_a_out" != yes; then
26642664
: ${LDSHARED='$(CC) -shared'}
26652665
if test "$rb_cv_binary_elf" = yes; then
26662666
LDFLAGS="$LDFLAGS -rdynamic"
2667-
DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$(.TARGET)'
2667+
DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$@'
26682668
else
26692669
test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes || LDSHARED='$(LD) -Bshareable'
26702670
fi

0 commit comments

Comments
 (0)