1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

(do-install): Delete redundant code to copy etc twice.

This commit is contained in:
Richard M. Stallman 1993-05-29 16:38:15 +00:00
parent 2ed3f64ccc
commit 2b7f46c9a2

View file

@ -344,15 +344,6 @@ do-install: mkdir
rm -f $${subdir}/*~ ; \
done) ; \
done
-[ `(cd etc; /bin/pwd)` != `(cd ${srcdir}/etc; /bin/pwd)` ] \
&& (echo "Copying ./etc..." ; \
(cd ./etc; tar cf - . )|(cd ${etcdir}; umask 0; tar xvf - ); \
for subdir in `find ${etcdir} -type d ! -name RCS -print` ; do \
rm -rf $${subdir}/RCS ; \
rm -rf $${subdir}/CVS ; \
rm -f $${subdir}/\#* ; \
rm -f $${subdir}/*~ ; \
done)
-[ `(cd ${srcdir}/info; /bin/pwd)` != `(cd ${infodir}; /bin/pwd)` ] \
&& (cd ${srcdir}/info ; \
if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \