diff options
| author | Gerd Moellmann | 2000-05-25 10:38:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-05-25 10:38:04 +0000 |
| commit | 10db7fc5e1d4210b5883a759d970f1438d66e397 (patch) | |
| tree | d42e67f46aa93972d3442da9a3c9251e3a610928 | |
| parent | 68b283cca6467f8e2a343b13f80658174e1fcc3c (diff) | |
| download | emacs-10db7fc5e1d4210b5883a759d970f1438d66e397.tar.gz emacs-10db7fc5e1d4210b5883a759d970f1438d66e397.zip | |
Ignore exit status of `unset CDPATH' everywhwere.
On FreeBSD, the exiit status is 1 if CDPATH is not set.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 14 |
2 files changed, 12 insertions, 7 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-05-25 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in: Ignore exit status of `unset CDPATH' everywhere. | ||
| 4 | On FreeBSD, the exit status is 1 if CDPATH is not set. | ||
| 5 | |||
| 1 | 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp> | 6 | 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp> |
| 2 | 7 | ||
| 3 | * configure.in: Check for grandpt and getpt. | 8 | * configure.in: Check for grandpt and getpt. |
diff --git a/Makefile.in b/Makefile.in index cf60eecd2cf..df3ae4b746f 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -305,7 +305,7 @@ install-arch-dep: mkdir | |||
| 305 | -chmod 1755 ${bindir}/emacs-${version} | 305 | -chmod 1755 ${bindir}/emacs-${version} |
| 306 | rm -f ${bindir}/$(EMACS) | 306 | rm -f ${bindir}/$(EMACS) |
| 307 | -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) | 307 | -ln ${bindir}/emacs-${version} ${bindir}/$(EMACS) |
| 308 | unset CDPATH; \ | 308 | -unset CDPATH; \ |
| 309 | for f in `cd lib-src && echo fns-*.el`; do \ | 309 | for f in `cd lib-src && echo fns-*.el`; do \ |
| 310 | ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ | 310 | ${INSTALL_DATA} lib-src/$$f ${archlibdir}/$$f; \ |
| 311 | done | 311 | done |
| @@ -319,7 +319,7 @@ install-arch-dep: mkdir | |||
| 319 | ## as a workaround for a bug in tar on Ultrix 4.2. | 319 | ## as a workaround for a bug in tar on Ultrix 4.2. |
| 320 | install-arch-indep: mkdir info | 320 | install-arch-indep: mkdir info |
| 321 | -set ${COPYDESTS} ; \ | 321 | -set ${COPYDESTS} ; \ |
| 322 | unset CDPATH; \ | 322 | -unset CDPATH; \ |
| 323 | for dir in ${COPYDIR} ; do \ | 323 | for dir in ${COPYDIR} ; do \ |
| 324 | if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \ | 324 | if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \ |
| 325 | rm -rf $$1 ; \ | 325 | rm -rf $$1 ; \ |
| @@ -329,7 +329,7 @@ install-arch-indep: mkdir info | |||
| 329 | -set ${COPYDESTS} ; \ | 329 | -set ${COPYDESTS} ; \ |
| 330 | mkdir ${COPYDESTS} ; \ | 330 | mkdir ${COPYDESTS} ; \ |
| 331 | chmod ugo+rx ${COPYDESTS} ; \ | 331 | chmod ugo+rx ${COPYDESTS} ; \ |
| 332 | unset CDPATH; \ | 332 | -unset CDPATH; \ |
| 333 | for dir in ${COPYDIR} ; do \ | 333 | for dir in ${COPYDIR} ; do \ |
| 334 | dest=$$1 ; shift ; \ | 334 | dest=$$1 ; shift ; \ |
| 335 | [ -d $${dir} ] \ | 335 | [ -d $${dir} ] \ |
| @@ -368,7 +368,7 @@ install-arch-indep: mkdir info | |||
| 368 | > ${datadir}/emacs/site-lisp/subdirs.el; \ | 368 | > ${datadir}/emacs/site-lisp/subdirs.el; \ |
| 369 | fi | 369 | fi |
| 370 | -chmod a+r ${datadir}/emacs/site-lisp/subdirs.el | 370 | -chmod a+r ${datadir}/emacs/site-lisp/subdirs.el |
| 371 | unset CDPATH; \ | 371 | -unset CDPATH; \ |
| 372 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ | 372 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ |
| 373 | then \ | 373 | then \ |
| 374 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ | 374 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ |
| @@ -376,7 +376,7 @@ install-arch-indep: mkdir info | |||
| 376 | |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null); \ | 376 | |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null); \ |
| 377 | (cd $(docdir); chmod a+r DOC*; rm DOC); \ | 377 | (cd $(docdir); chmod a+r DOC*; rm DOC); \ |
| 378 | else true; fi | 378 | else true; fi |
| 379 | unset CDPATH; \ | 379 | -unset CDPATH; \ |
| 380 | if [ -r ./lisp ] \ | 380 | if [ -r ./lisp ] \ |
| 381 | && [ -r ./lisp/simple.el ] \ | 381 | && [ -r ./lisp/simple.el ] \ |
| 382 | && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ | 382 | && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ |
| @@ -386,7 +386,7 @@ install-arch-indep: mkdir info | |||
| 386 | (cd lisp; tar -cf - *.el *.elc) \ | 386 | (cd lisp; tar -cf - *.el *.elc) \ |
| 387 | |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null); \ | 387 | |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null); \ |
| 388 | else true; fi | 388 | else true; fi |
| 389 | unset CDPATH; \ | 389 | -unset CDPATH; \ |
| 390 | thisdir=`/bin/pwd`; \ | 390 | thisdir=`/bin/pwd`; \ |
| 391 | if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ | 391 | if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ |
| 392 | then \ | 392 | then \ |
| @@ -458,7 +458,7 @@ uninstall: | |||
| 458 | $(MAKE) $(MFLAGS) uninstall \ | 458 | $(MAKE) $(MFLAGS) uninstall \ |
| 459 | prefix=${prefix} exec_prefix=${exec_prefix} \ | 459 | prefix=${prefix} exec_prefix=${exec_prefix} \ |
| 460 | bindir=${bindir} libexecdir=${libexecdir} archlibdir=${archlibdir}) | 460 | bindir=${bindir} libexecdir=${libexecdir} archlibdir=${archlibdir}) |
| 461 | unset CDPATH; \ | 461 | -unset CDPATH; \ |
| 462 | for dir in ${lispdir} ${etcdir} ; do \ | 462 | for dir in ${lispdir} ${etcdir} ; do \ |
| 463 | if [ -d $${dir} ]; then \ | 463 | if [ -d $${dir} ]; then \ |
| 464 | case `(cd $${dir} ; /bin/pwd)` in \ | 464 | case `(cd $${dir} ; /bin/pwd)` in \ |