comparison configure.in @ 26:441bb1e64a06 r19-15b96

Import from CVS: tag r19-15b96
author cvs
date Mon, 13 Aug 2007 08:51:32 +0200
parents 4103f0995bd7
children 1917ad0d78d7
comparison
equal deleted inserted replaced
25:383a494979f8 26:441bb1e64a06
1 dnl -*- mode: m4; m4-mode-hook : (lambda () (modify-syntax-entry ?\" "\"\"")) ; -*-
1 dnl Synched up with: FSF 19.31. 2 dnl Synched up with: FSF 19.31.
2 dnl (19.29 -- 19.31 use Autoconf 2.x instead of Autoconf 1.x. 3 dnl (19.29 -- 19.31 use Autoconf 2.x instead of Autoconf 1.x.
3 dnl Some stuff related to this change has not been synched because 4 dnl Some stuff related to this change has not been synched because
4 dnl it can't be until we switch to Autoconf 2.x.) 5 dnl it can't be until we switch to Autoconf 2.x.)
5 dnl 6 dnl
1441 #### Make symlinks for etc, lisp, and info directories while the path 1442 #### Make symlinks for etc, lisp, and info directories while the path
1442 #### is still relative. We don't symlink lock because someone may 1443 #### is still relative. We don't symlink lock because someone may
1443 #### have stuck the source on a read-only partition. Instead we'll 1444 #### have stuck the source on a read-only partition. Instead we'll
1444 #### create it as an actual directory later on if it doesn't already 1445 #### create it as an actual directory later on if it doesn't already
1445 #### exist. 1446 #### exist.
1446 for dir in etc lisp info 1447 for dir in etc man info site-lisp
1447 do 1448 do
1448 if [ ! -d $dir ]; then 1449 if [ ! -d $dir ]; then
1449 echo Making symbolic link to ${srcdir}/$dir 1450 echo Making symbolic link to ${srcdir}/$dir
1450 ${LN_S} ${srcdir}/$dir . 1451 ${LN_S} ${srcdir}/$dir .
1451 fi 1452 fi
1452 done 1453 done
1454
1455 # lisp/ is special
1456 if [ ! -d lisp ]; then
1457 mkdir lisp
1458 echo Making symbolic links to lisp libraries
1459 ${LN_S} ${srcdir}/lisp/* ./lisp
1460 rm -f ./lisp/*.el ./lisp/site-packages
1461 cp ${srcdir}/lisp/*.el lisp
1462 if [ -f ${srcdir}/lisp/site-packages ]; then
1463 cp ${srcdir}/lisp/site-packages lisp
1464 fi
1465 fi
1466
1467 cp ${srcdir}/lisp/version.el lisp
1453 1468
1454 #### Make srcdir absolute, if it isn't already. It's important to 1469 #### Make srcdir absolute, if it isn't already. It's important to
1455 #### avoid running the path through pwd unnecessary, since pwd can 1470 #### avoid running the path through pwd unnecessary, since pwd can
1456 #### give you automounter prefixes, which can go away. 1471 #### give you automounter prefixes, which can go away.
1457 case "${srcdir}" in 1472 case "${srcdir}" in