diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-24 01:54:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-24 01:54:17 +0000 |
commit | 19abddedeaa8ed67d855d9ac73ae071adfd28161 (patch) | |
tree | d2e189f55a146ebaf58a25b050001d04f11e3f5e /Makefile.in | |
parent | 80b2ff3530f84cd1ce2ed5e175540ef1b2f2e84e (diff) | |
download | emacs-19abddedeaa8ed67d855d9ac73ae071adfd28161.tar.gz |
(install-arch-indep): Don't do mkdir here.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 71e2a0a0503..1832fddd4f7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -303,6 +303,10 @@ install-arch-dep: mkdir ### Note that we copy the DOC-* files from the build etc directory ### as well as lots of things from ${srcdir}/etc. + +# These lines appeared after the second -set, but should be unnecessary. +# mkdir ${COPYDESTS} ; \ +# chmod ugo+rx ${COPYDESTS} ; \ install-arch-indep: mkdir -set ${COPYDESTS} ; \ for dir in ${COPYDIR} ; do \ @@ -312,7 +316,6 @@ install-arch-indep: mkdir shift ; \ done -set ${COPYDESTS} ; \ - mkdir ${COPYDESTS} ; \ for dir in ${COPYDIR} ; do \ dest=$$1 ; shift ; \ [ -d $${dir} ] \ |