gstein      00/12/31 05:04:01

  Modified:    .        Makefile.in
  Log:
  prevent duplicate exports. when srcdir is "." (or an absolute path to that
  same dir), then two copies of the include headers were processed. Instead,
  just process the true source dir, rather than those source headers *and* the
  headers created during the config/build.
  
  Revision  Changes    Path
  1.36      +4 -4      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -u -r1.35 -r1.36
  --- Makefile.in       2000/12/18 00:17:18     1.35
  +++ Makefile.in       2000/12/31 13:04:01     1.36
  @@ -118,16 +118,16 @@
   
   $(TARGET_EXPORTS):
        if test -z "$(srcdir)"; then \
  -             $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h > $@ ; \
  +             $(AWK) -f helpers/make_export.awk include/*.h > $@ ; \
        else \
  -             $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h 
$(srcdir)include/*.h > $@ ; \
  +             $(AWK) -f $(srcdir)helpers/make_export.awk $(srcdir)include/*.h 
> $@ ; \
        fi
   
   docs:
        if test -z "$(srcdir)"; then \
  -             $(srcdir)helpers/scandoc -i$(srcdir)helpers/default.pl 
-p./docs/ ./include/*.h; \
  +             helpers/scandoc -ihelpers/default.pl -p./docs/ ./include/*.h; \
        else \
  -             $(srcdir)helpers/scandoc -i$(srcdir)helpers/default.pl 
-p./docs/ ./include/*.h $(srcdir)include/*.h; \
  +             $(srcdir)helpers/scandoc -i$(srcdir)helpers/default.pl 
-p./docs/ $(srcdir)include/*.h; \
        fi
   
   test: $(LIBAPR)
  
  
  

Reply via email to