Mercurial > hg > xemacs-beta
comparison Makefile.in.in @ 4365:c9ab656691c0
Automated merge with ssh://aidan-guest@hg.debian.org//hg/xemacs/xemacs
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 27 Dec 2007 13:22:26 +0100 |
parents | 146742e30f05 |
children | 4939bde48d12 |
comparison
equal
deleted
inserted
replaced
4364:d74913294e87 | 4365:c9ab656691c0 |
---|---|
511 fi; \ | 511 fi; \ |
512 if test -r ${pkgsrcdir}/xemacs-mule-sumo.tar.gz; \ | 512 if test -r ${pkgsrcdir}/xemacs-mule-sumo.tar.gz; \ |
513 then echo "To install the full set of packages with mule in"; \ | 513 then echo "To install the full set of packages with mule in"; \ |
514 echo "${package_path}/mule-packages, type:"; \ | 514 echo "${package_path}/mule-packages, type:"; \ |
515 echo " make install-all-packages"; \ | 515 echo " make install-all-packages"; \ |
516 fi; | 516 fi |
517 | |
518 # The test for a non-trivial path simply checks for the conventional Unix | |
519 # path separator ":". This is reasonable because this is basically just | |
520 # a convenience feature, anyway. | |
517 | 521 |
518 mkpkgdir: FRC.mkdir ${MAKEPATH} | 522 mkpkgdir: FRC.mkdir ${MAKEPATH} |
519 @if test -z ${package_path}; \ | 523 @if test -z ${package_path}; \ |
520 then echo "not configured --with-late-packages; no place to install."; \ | 524 then echo "Not configured --with-late-packages; no place to install."; \ |
525 exit -1; \ | |
526 elif echo ${package_path} | grep ":"; \ | |
527 then echo "Configured with multiple late package directories; you decide where to install."; \ | |
521 exit -1; \ | 528 exit -1; \ |
522 elif test -e ${package_path}/xemacs-packages \ | 529 elif test -e ${package_path}/xemacs-packages \ |
523 -o -e ${package_path}/mule-packages; \ | 530 -o -e ${package_path}/mule-packages; \ |
524 then echo "${package_path} is installed; won't overwrite packages."; \ | 531 then echo "${package_path} is installed; won't overwrite packages."; \ |
525 exit -1; \ | 532 exit -1; \ |