You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2001/08/02 00:57:33 UTC

cvs commit: apr configure.in

jerenkrantz    01/08/01 15:57:33

  Modified:    .        configure.in
  Log:
  Forgot to escape the $ in libdir.  This breaks the apr-util build with
  libtool-1.4, but not with libtool-1.3.  Odd.
  
  Revision  Changes    Path
  1.352     +1 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.351
  retrieving revision 1.352
  diff -u -r1.351 -r1.352
  --- configure.in	2001/08/01 20:37:03	1.351
  +++ configure.in	2001/08/01 22:57:32	1.352
  @@ -114,7 +114,7 @@
         link='$(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(ALL_LDFLAGS) $(ALL_LIBS) -o $@'
         so_ext='lo'
         lib_target='-rpath $(libdir) $$objects'
  -      export_lib_target='-rpath $(libdir) \$\$objects'
  +      export_lib_target='-rpath \$(libdir) \$\$objects'
   else
         lt_compile='$(COMPILE) -c $<'
         link='$(AR) cr $(TARGET_LIB) $$objects; $(RANLIB) $(TARGET_LIB)'