You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jf...@apache.org on 2004/06/22 14:59:17 UTC

cvs commit: apr-iconv/lib Makefile.in

jfclere     2004/06/22 05:59:17

  Modified:    lib      Makefile.in
  Log:
  APR_LIB_TARGET is apr-config --apr-lib-target that tells something like:
  -rpath $(libdir) $(OBJECTS)
  To get the objects returned by the find we have to add the environment
  variable objects.
  
  Revision  Changes    Path
  1.5       +1 -1      apr-iconv/lib/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-iconv/lib/Makefile.in,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile.in	26 Sep 2003 07:47:13 -0000	1.4
  +++ Makefile.in	22 Jun 2004 12:59:17 -0000	1.5
  @@ -29,7 +29,7 @@
   
   $(TARGET_LIB):
   	@objects="`find $(SUBDIRS) -name '*.@APR_SO_EXT@' -print`"; \
  -	tmpcmd="$(LINK) @APR_LIB_TARGET@"; \
  +	tmpcmd="$(LINK) @APR_LIB_TARGET@ $$objects"; \
   	echo $$tmpcmd; \
   	$$tmpcmd && touch $@