Mercurial > hg > xemacs-beta
comparison Makefile.in.in @ 4357:3af63264d320
Make check-available-packages announce where to install packages.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Wed, 26 Dec 2007 11:29:51 -0800 |
parents | 232d873b9705 |
children | 146742e30f05 |
comparison
equal
deleted
inserted
replaced
4356:cc293ef846d2 | 4357:3af63264d320 |
---|---|
498 | 498 |
499 ## #### Probably we should add a rule for lib-src/make-path here. | 499 ## #### Probably we should add a rule for lib-src/make-path here. |
500 | 500 |
501 check-available-packages: | 501 check-available-packages: |
502 @if test -r ${pkgsrcdir}/bootstrap.tar.gz; \ | 502 @if test -r ${pkgsrcdir}/bootstrap.tar.gz; \ |
503 then echo "To install a set of bootstrap packages, type:"; \ | 503 then echo "To install a set of bootstrap packages in"; \ |
504 echo "${package_path}/xemacs-packages, type:"; \ | |
504 echo " make install-bootstrap-packages"; \ | 505 echo " make install-bootstrap-packages"; \ |
505 fi; \ | 506 fi; \ |
506 if test -r ${pkgsrcdir}/xemacs-sumo.tar.gz; \ | 507 if test -r ${pkgsrcdir}/xemacs-sumo.tar.gz; \ |
507 then echo "To install the full set of non-mule packages, type:"; \ | 508 then echo "To install the full set of non-mule packages in"; \ |
509 echo "${package_path}/xemacs-packages, type:"; \ | |
508 echo " make install-nonmule-packages"; \ | 510 echo " make install-nonmule-packages"; \ |
509 fi; \ | 511 fi; \ |
510 if test -r ${pkgsrcdir}/xemacs-mule-sumo.tar.gz; \ | 512 if test -r ${pkgsrcdir}/xemacs-mule-sumo.tar.gz; \ |
511 then echo "To install the full set of packages with mule, type:"; \ | 513 then echo "To install the full set of packages with mule in"; \ |
514 echo "${package_path}/mule-packages, type:"; \ | |
512 echo " make install-all-packages"; \ | 515 echo " make install-all-packages"; \ |
513 fi; | 516 fi; |
514 | 517 |
515 mkpkgdir: FRC.mkdir ${MAKEPATH} | 518 mkpkgdir: FRC.mkdir ${MAKEPATH} |
516 @if test -z ${package_path}; \ | 519 @if test -z ${package_path}; \ |