# HG changeset patch # User Stephen J. Turnbull # Date 1198697391 28800 # Node ID 3af63264d32008e05044cc024b6308ee0114d278 # Parent cc293ef846d240af187a523bb32eb5e26a083531 Make check-available-packages announce where to install packages. diff -r cc293ef846d2 -r 3af63264d320 ChangeLog --- a/ChangeLog Mon Dec 24 14:00:51 2007 +0100 +++ b/ChangeLog Wed Dec 26 11:29:51 2007 -0800 @@ -1,3 +1,7 @@ +2007-12-26 Stephen J. Turnbull + + * Makefile.in.in (check-available-packages): Say where to install. + 2007-12-23 Stephen J. Turnbull * Makefile.in.in (mkpkgdir): diff -r cc293ef846d2 -r 3af63264d320 Makefile.in.in --- a/Makefile.in.in Mon Dec 24 14:00:51 2007 +0100 +++ b/Makefile.in.in Wed Dec 26 11:29:51 2007 -0800 @@ -500,15 +500,18 @@ check-available-packages: @if test -r ${pkgsrcdir}/bootstrap.tar.gz; \ - then echo "To install a set of bootstrap packages, type:"; \ + then echo "To install a set of bootstrap packages in"; \ + echo "${package_path}/xemacs-packages, type:"; \ echo " make install-bootstrap-packages"; \ fi; \ if test -r ${pkgsrcdir}/xemacs-sumo.tar.gz; \ - then echo "To install the full set of non-mule packages, type:"; \ + then echo "To install the full set of non-mule packages in"; \ + echo "${package_path}/xemacs-packages, type:"; \ echo " make install-nonmule-packages"; \ fi; \ if test -r ${pkgsrcdir}/xemacs-mule-sumo.tar.gz; \ - then echo "To install the full set of packages with mule, type:"; \ + then echo "To install the full set of packages with mule in"; \ + echo "${package_path}/mule-packages, type:"; \ echo " make install-all-packages"; \ fi;