all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vladimir Lomov <lomov.vl@gmail.com>
To: 12089@debbugs.gnu.org
Subject: bug#12089: Error introduced in 109267 rev.
Date: Mon, 30 Jul 2012 13:46:18 +0900	[thread overview]
Message-ID: <20120730044618.GA1307@smoon> (raw)

[-- 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; \


             reply	other threads:[~2012-07-30  4:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-30  4:46 Vladimir Lomov [this message]
2012-07-30 14:58 ` bug#12089: Error introduced in 109267 rev Glenn Morris

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120730044618.GA1307@smoon \
    --to=lomov.vl@gmail.com \
    --cc=12089@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.