aaron       01/10/11 15:17:35

  Modified:    .        Makefile.in
  Log:
  Added $(top_srcdir) and prefixed some of the files we reference with that
  variable.
  
  Revision  Changes    Path
  1.56      +6 -5      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- Makefile.in       2001/09/14 14:10:05     1.55
  +++ Makefile.in       2001/10/11 22:17:34     1.56
  @@ -39,6 +39,7 @@
   [EMAIL PROTECTED]@
   [EMAIL PROTECTED]@
   [EMAIL PROTECTED]@
  [EMAIL PROTECTED]@
   
   delete-lib:
        @if test -f $(TARGET_LIB); then \
  @@ -52,11 +53,11 @@
   
   install: $(TARGET_LIB)
        if [ ! -d $(includedir) ]; then \
  -         $(srcdir)/build/mkdir.sh $(includedir); \
  +         $(top_srcdir)/build/mkdir.sh $(includedir); \
        fi; \
  -     cp include/*.h $(includedir); \
  +     cp $(top_srcdir)/include/*.h $(includedir); \
        if [ ! -d $(libdir) ]; then \
  -         $(srcdir)/build/mkdir.sh $(libdir); \
  +         $(top_srcdir)/build/mkdir.sh $(libdir); \
        fi; \
        $(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
        $(LIBTOOL) --mode=install cp APRVARS $(libdir)
  @@ -81,10 +82,10 @@
        fi
   
   $(TARGET_EXPORTS):
  -     $(MKEXPORT) include/*.h > $@
  +     $(MKEXPORT) $(top_srcdir)/include/*.h > $@
   
   dox:
  -     doxygen docs/doxygen.conf
  +     doxygen $(top_srcdir)/docs/doxygen.conf
   
   test: $(TARGET_LIB)
        (cd test; make clean; make; \
  
  
  

Reply via email to