all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#12089: Error introduced in 109267 rev.
@ 2012-07-30  4:46 Vladimir Lomov
  2012-07-30 14:58 ` Glenn Morris
  0 siblings, 1 reply; 2+ messages in thread
From: Vladimir Lomov @ 2012-07-30  4:46 UTC (permalink / raw)
  To: 12089

[-- Attachment #1: Type: text/plain, Size: 415 bytes --]

Hello,

this is small issue introduced in rev 109267 that prevents installation
of freshly compiled Emacs (trunk).

I attach patch to fix it.

Details: at installation step the `install-arch-indep' target is called,
it contains
eval sh -x /bin/mkdir -p
which simply wrong (just call in shell the `sh /bin/mkdir -p /tmp/ttt').

---
WBR, Vladimir Lomov

-- 
Human beings were created by water to transport it uphill.

[-- Attachment #2: makefile.in.patch --]
[-- Type: text/plain, Size: 468 bytes --]

=== modified file 'Makefile.in'
--- Makefile.in	2012-07-29 16:55:02 +0000
+++ Makefile.in	2012-07-30 01:38:16 +0000
@@ -489,7 +489,7 @@
 ## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html
 install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
 	umask 022 ; \
-	  eval sh -x $(MKDIR_P) \
+	  eval $(MKDIR_P) \
 	    "'$(DESTDIR)`echo ${locallisppath}|sed \"s,:,' '$(DESTDIR),g\"`'"
 	-set ${COPYDESTS} ; \
 	unset CDPATH; \


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-07-30 14:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-30  4:46 bug#12089: Error introduced in 109267 rev Vladimir Lomov
2012-07-30 14:58 ` Glenn Morris

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.