Skip to content

Commit bf56aea

Browse files
komhbhaible
authored andcommitted
Fix installation on OS/2.
1 parent 891a793 commit bf56aea

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2011-03-27 KO Myung-Hun <komh@chollian.net>
2+
3+
Fix installation on OS/2.
4+
* src/Makefile.in (all, iconv_no_i18n): Add $(EXEEXT) suffix to
5+
iconv_no_i18n. This is the recommended way to use libtool, see
6+
<http://lists.gnu.org/archive/html/bug-libtool/2009-04/msg00013.html>.
7+
18
2011-03-31 Bruno Haible <bruno@clisp.org>
29

310
gentranslit: Fix buffer overrun.

src/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ OBJECTS_RES_no =
7070
# i.e. during "make install". The intermediate 'iconv' executable is built
7171
# without internationalization and not linked with libintl.
7272

73-
all : iconv_no_i18n iconv.@OBJEXT@ $(OBJECTS_RES_@WOE32@)
73+
all : iconv_no_i18n$(EXEEXT) iconv.@OBJEXT@ $(OBJECTS_RES_@WOE32@)
7474
test `ls -ld . | sed -e 's/^d\(.........\).*/\1/'` = rwxrwxrwx || chmod 777 .
7575

7676
# This is the temporary iconv executable, without internationalization.
77-
iconv_no_i18n : iconv_no_i18n.@OBJEXT@ ../lib/libiconv.la $(OBJECTS_RES_@WOE32@)
77+
iconv_no_i18n$(EXEEXT) : iconv_no_i18n.@OBJEXT@ ../lib/libiconv.la $(OBJECTS_RES_@WOE32@)
7878
$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(CFLAGS) iconv_no_i18n.@OBJEXT@ ../srclib/libicrt.a ../lib/libiconv.la $(OBJECTS_RES_@WOE32@) -o $@
7979

8080
iconv_no_i18n.@OBJEXT@ : $(srcdir)/iconv_no_i18n.c $(srcdir)/iconv.c

0 commit comments

Comments
 (0)