Diff for /embedaddon/libiconv/man/Makefile.in between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 22:57:48 version 1.1.1.2, 2021/03/17 13:38:46
Line 27  mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinst Line 27  mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinst
   
 #### End of system configuration section. ####  #### End of system configuration section. ####
   
SHELL = /bin/shSHELL = @SHELL@
   
 # Used by docdir.  # Used by docdir.
 PACKAGE = @PACKAGE@  PACKAGE = @PACKAGE@
Line 64  distclean : force Line 64  distclean : force
         $(RM) Makefile          $(RM) Makefile
   
 maintainer-clean : distclean  maintainer-clean : distclean
   
   # List of source files.
   SOURCE_FILES = \
     Makefile.in \
     iconv.1 \
     iconv.3 \
     iconv_close.3 \
     iconv_open.3 \
     iconvctl.3 \
     iconv_open_into.3
   # List of distributed files imported from other packages.
   IMPORTED_FILES =
   # List of distributed files generated by autotools or Makefile.devel.
   GENERATED_FILES = \
     iconv.1.html \
     iconv.3.html \
     iconv_close.3.html \
     iconv_open.3.html \
     iconvctl.3.html \
     iconv_open_into.3.html
   # List of distributed files generated by "make".
   DISTRIBUTED_BUILT_FILES =
   # List of distributed files.
   DISTFILES = $(SOURCE_FILES) $(IMPORTED_FILES) $(GENERATED_FILES) $(DISTRIBUTED_BUILT_FILES)
   
   distdir : $(DISTFILES)
           for file in $(DISTFILES); do \
             if test -f $$file; then dir='.'; else dir='$(srcdir)'; fi; \
             cp -p "$$dir/$$file" '$(distdir)'/$$file || exit 1; \
           done
   
 force :  force :
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>