comparison Makefile.in.in @ 4361:146742e30f05

Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
author Stephen J. Turnbull <stephen@xemacs.org>
date Wed, 26 Dec 2007 22:38:40 -0800
parents 3af63264d320
children 4939bde48d12
comparison
equal deleted inserted replaced
4360:b545430be2eb 4361:146742e30f05
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; \