From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 08 10:16:33 2013 Received: (at submit) by debbugs.gnu.org; 8 Jun 2013 14:16:33 +0000 Received: from localhost ([127.0.0.1]:58421 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlJwW-0008RG-4R for submit@debbugs.gnu.org; Sat, 08 Jun 2013 10:16:33 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34594) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlJwT-0008Qw-NA for submit@debbugs.gnu.org; Sat, 08 Jun 2013 10:16:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UlJwH-0007S8-3Q for submit@debbugs.gnu.org; Sat, 08 Jun 2013 10:16:17 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-101.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID,USER_IN_WHITELIST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:33254) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UlJwH-0007S4-0Q for submit@debbugs.gnu.org; Sat, 08 Jun 2013 10:16:17 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UlJwF-0004AL-8n for bug-gnu-emacs@gnu.org; Sat, 08 Jun 2013 10:16:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UlJwE-0007Rm-Dk for bug-gnu-emacs@gnu.org; Sat, 08 Jun 2013 10:16:15 -0400 Received: from mail-ea0-x22e.google.com ([2a00:1450:4013:c01::22e]:53296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UlJwE-0007Rf-7Z for bug-gnu-emacs@gnu.org; Sat, 08 Jun 2013 10:16:14 -0400 Received: by mail-ea0-f174.google.com with SMTP id o10so1158958eaj.5 for ; Sat, 08 Jun 2013 07:16:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=oGD+1+IYapDrS6aSUJhStgIBy8Qy+Fr642057SbIxW0=; b=Kg7iDbR18RA1N/IDPu35l0n6zjSgYOI3JHRubT6ZOm2mCg7/MDVLA3fOXOXDWgrpA+ uhrQrm+PskK6eJlRNydm+jEpFaRrhunaHrqtGqc5tiU5fsv0I3ZUkUamZSERglHZGn4R SSM3cxLxSeuWr4IUb/MYksqO5C22QJWT9Faud0n4HdmQtWeG/TtpF+GzsNyfFvjTB42f FmojV+LzBDGFogt+kiIas3xVr9CZeZVVKP5vr7iHc4R4/njh3bDujBZr5uljCtTh1vEN oxWJsIo2FeDL8kxrY2VZxJfHrGk2lb091C4ELPuKVBowL0BYfy64fPbJUmMwtyBHyBpG XaBw== X-Received: by 10.15.36.133 with SMTP id i5mr3357438eev.52.1370700973478; Sat, 08 Jun 2013 07:16:13 -0700 (PDT) MIME-Version: 1.0 Received: by 10.14.142.4 with HTTP; Sat, 8 Jun 2013 07:15:33 -0700 (PDT) From: Juanma Barranquero Date: Sat, 8 Jun 2013 16:15:33 +0200 Message-ID: Subject: "make install" has trouble with non-standard locallisppath directories To: Bug-Gnu-Emacs Content-Type: text/plain; charset=UTF-8 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.2 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.1 (------) Package: emacs Version: 24.3.50 On Windows, using the MSYS build machinery. If you need to add a non-default lisp directory to the path, by following nt/INSTALL.MSYS recommendation of doing, for example ./nt/msysconfig.sh --enable-locallisppath='%emacs_dir%/../site-lisp;%emacs_dir%/share/emacs/24.3.50/site-lisp;%emacs_dir%/share/emacs/site-lisp' then "make install" will try to create these directories *in the build tree* (not the installation dir), and do a poor job at it. In the above case, after make install the build tree will contain these directories: %emacs_dir% site-lisp;%emacs_dir%/share/emacs/24.3.50/site-lisp;%emacs_dir%/share/emacs/site-lisp "%emacs_dir%" is literal, an unexpanded environment variable. Makefile.in contains this old note: ## I'm not sure creating locallisppath here serves any useful purpose. ## If it has the default value, then the later write_subdir commands ## will ensure all these components exist. ## This will only do something if locallisppath has a non-standard value. ## Is it really Emacs's job to create those directories? ## Should we also be ensuring they contain subdirs.el files? ## It would be easy to do, just use write_subdir. and indeed, I would argue that is not Emacs' job to create them. If the user is knowledgeable enough to have to use --enable-locallisppath, s/he'll also know enough to make sure the directories exist and contain subdirs.el as required. From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 08 11:05:45 2013 Received: (at 14576) by debbugs.gnu.org; 8 Jun 2013 15:05:45 +0000 Received: from localhost ([127.0.0.1]:58479 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlKi8-0002La-UZ for submit@debbugs.gnu.org; Sat, 08 Jun 2013 11:05:45 -0400 Received: from mtaout21.012.net.il ([80.179.55.169]:37417) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlKi5-0002LB-B1 for 14576@debbugs.gnu.org; Sat, 08 Jun 2013 11:05:42 -0400 Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0MO200H00XP6TS00@a-mtaout21.012.net.il> for 14576@debbugs.gnu.org; Sat, 08 Jun 2013 18:05:27 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MO200HSLXX3KM80@a-mtaout21.012.net.il>; Sat, 08 Jun 2013 18:05:27 +0300 (IDT) Date: Sat, 08 Jun 2013 18:05:15 +0300 From: Eli Zaretskii Subject: Re: bug#14576: "make install" has trouble with non-standard locallisppath directories In-reply-to: X-012-Sender: halo1@inter.net.il To: Juanma Barranquero Message-id: <83r4gcskwk.fsf@gnu.org> References: X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 14576 Cc: 14576@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: Juanma Barranquero > Date: Sat, 8 Jun 2013 16:15:33 +0200 > > On Windows, using the MSYS build machinery. > > If you need to add a non-default lisp directory to the path, by > following nt/INSTALL.MSYS recommendation of doing, for example > > ./nt/msysconfig.sh > --enable-locallisppath='%emacs_dir%/../site-lisp;%emacs_dir%/share/emacs/24.3.50/site-lisp;%emacs_dir%/share/emacs/site-lisp' > > then "make install" will try to create these directories *in the build > tree* (not the installation dir), and do a poor job at it. In the > above case, after make install the build tree will contain these > directories: > > %emacs_dir% > site-lisp;%emacs_dir%/share/emacs/24.3.50/site-lisp;%emacs_dir%/share/emacs/site-lisp > > "%emacs_dir%" is literal, an unexpanded environment variable. I removed from nt/INSTALL.MSYS the example that made it sound as if %emacs_dir% is supported. The other part of the reason that this didn't work is that you need to separate the directories with a colon ':', not a semi-colon (another mistake in INSTALL.MSYS that I fixed). Committed as trunk revision 112894. Supporting these features will require changes in the top-level Makefile.in; patches welcome. IOW, the rest of this report is a feature request. > Makefile.in contains this old note: > > ## I'm not sure creating locallisppath here serves any useful purpose. > ## If it has the default value, then the later write_subdir commands > ## will ensure all these components exist. > ## This will only do something if locallisppath has a non-standard value. > ## Is it really Emacs's job to create those directories? > ## Should we also be ensuring they contain subdirs.el files? > ## It would be easy to do, just use write_subdir. > > and indeed, I would argue that is not Emacs' job to create them. If > the user is knowledgeable enough to have to use > --enable-locallisppath, s/he'll also know enough to make sure the > directories exist and contain subdirs.el as required. This is IMO unrelated. From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 08 11:19:44 2013 Received: (at 14576) by debbugs.gnu.org; 8 Jun 2013 15:19:44 +0000 Received: from localhost ([127.0.0.1]:58499 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlKvg-0002yT-Bn for submit@debbugs.gnu.org; Sat, 08 Jun 2013 11:19:44 -0400 Received: from mail-ee0-f52.google.com ([74.125.83.52]:60185) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlKve-0002y4-M1 for 14576@debbugs.gnu.org; Sat, 08 Jun 2013 11:19:43 -0400 Received: by mail-ee0-f52.google.com with SMTP id c50so2146857eek.39 for <14576@debbugs.gnu.org>; Sat, 08 Jun 2013 08:19:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=fJnZLFL3mZ0UaPgqgbvlFMaQ9BLHKoIwu6RV61d/JM4=; b=QmWgMZVeRACqB6JVRVIZP/EwyHpjoTIJQq+REjjqGycmcE6DlCg67CcXN8OjVclo4s KBPQbqC0N/aZjra0914IIsPA0v+haV9EjdLZtJsFKIYwGU/YhfKX/sh6Yb4H5VFdIjsi yFCdozbQEq2ewryqb4SwE+LdB3tynAPCltx7RyObz+3CuSdWKCOpAeauvDKDgh3fhmVf 52lrzoXDSzu9CoF7vuqQ5MTA00gsulSxFjhH2SawBLXdyhaR7TBDarIw8qhJnVGWLMor eKFE1hX444ln2BCXSiGsKhY5XBiWI2IgPWFgZFrZfHuHhKun6FM5QnoJcpXf1eEOFWdr fYaA== X-Received: by 10.14.89.66 with SMTP id b42mr3474286eef.89.1370704770141; Sat, 08 Jun 2013 08:19:30 -0700 (PDT) MIME-Version: 1.0 Received: by 10.14.142.4 with HTTP; Sat, 8 Jun 2013 08:18:50 -0700 (PDT) In-Reply-To: <83r4gcskwk.fsf@gnu.org> References: <83r4gcskwk.fsf@gnu.org> From: Juanma Barranquero Date: Sat, 8 Jun 2013 17:18:50 +0200 Message-ID: Subject: Re: bug#14576: "make install" has trouble with non-standard locallisppath directories To: Eli Zaretskii Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 14576 Cc: 14576@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) On Sat, Jun 8, 2013 at 5:05 PM, Eli Zaretskii wrote: > I removed from nt/INSTALL.MSYS the example that made it sound as if > %emacs_dir% is supported. [...] > This is IMO unrelated. Obviously our definitions of "supported" and "unrelated" do not agree. When a user passes --enable-locallisppath, he does it according to its description --enable-locallisppath=PATH directories Emacs should search for lisp files specific to this site which talks about directories to search, *not* how/when/by-who are they created. And passing a local lisp path containing %emacs_dir% is indeed "supported" in the sense that it works for its stated use (to search lisp files in the load path). What does *not* work is make install's poor attempt at creating these directories, so I really fail to see how can you say that these issues are unrelated. It's make install's fail the real trouble, not passing %emacs_dir% to --enable-locallisppath. > The other part of the reason that this > didn't work is that you need to separate the directories with a colon > ':', not a semi-colon (another mistake in INSTALL.MSYS that I fixed). > > Committed as trunk revision 112894. Thanks. > Supporting these features will require changes in the top-level > Makefile.in; patches welcome. IOW, the rest of this report is a > feature request. You mean "the feature that local lisp paths containing %emacs_dir% are correctly created"; that's indeed a feature request, just not one I'm asking for. I'm asking to remove a misfeature. From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 08 12:44:32 2013 Received: (at 14576) by debbugs.gnu.org; 8 Jun 2013 16:44:32 +0000 Received: from localhost ([127.0.0.1]:58594 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlMFk-0006TL-I8 for submit@debbugs.gnu.org; Sat, 08 Jun 2013 12:44:32 -0400 Received: from mtaout23.012.net.il ([80.179.55.175]:40796) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlMFf-0006Sz-PY for 14576@debbugs.gnu.org; Sat, 08 Jun 2013 12:44:29 -0400 Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0MO300M0025DFO00@a-mtaout23.012.net.il> for 14576@debbugs.gnu.org; Sat, 08 Jun 2013 19:44:14 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MO300MK42HP55B0@a-mtaout23.012.net.il>; Sat, 08 Jun 2013 19:44:14 +0300 (IDT) Date: Sat, 08 Jun 2013 19:44:02 +0300 From: Eli Zaretskii Subject: Re: bug#14576: "make install" has trouble with non-standard locallisppath directories In-reply-to: X-012-Sender: halo1@inter.net.il To: Juanma Barranquero Message-id: <83ppvwsgbx.fsf@gnu.org> References: <83r4gcskwk.fsf@gnu.org> X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: 14576 Cc: 14576@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.2 (-) > From: Juanma Barranquero > Date: Sat, 8 Jun 2013 17:18:50 +0200 > Cc: 14576@debbugs.gnu.org > > Obviously our definitions of "supported" and "unrelated" do not agree. "Supported" means supported by the code that was originally there for Posix platforms and by the changes I made for using that on Windows. Obviously, %emacs_dir% was not supported by the former; the changes I committed support that only in src/epaths.h. > What does *not* work is make install's poor attempt at creating these > directories, so I really fail to see how can you say that these issues > are unrelated. It's make install's fail the real trouble, not passing > %emacs_dir% to --enable-locallisppath. If you prefer "partially supported", I agree with that. But partial support helps only those users who know to look under the hood and do all kinds of special tricks. For the rest of the users, this partial support is the same as non-support. > > Supporting these features will require changes in the top-level > > Makefile.in; patches welcome. IOW, the rest of this report is a > > feature request. > > You mean "the feature that local lisp paths containing %emacs_dir% are > correctly created" Yes, and also the semi-colon usage (if that is what you want to be supported). > I'm asking to remove a misfeature. If by misfeature you mean the part that creates the directories in locallisppath, then I don't object to that removal. But if it is removed, it must be removed on all systems, not just on Windows, IMO. From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 08 12:50:50 2013 Received: (at 14576) by debbugs.gnu.org; 8 Jun 2013 16:50:50 +0000 Received: from localhost ([127.0.0.1]:58611 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlMLp-0006gJ-Iv for submit@debbugs.gnu.org; Sat, 08 Jun 2013 12:50:50 -0400 Received: from mail-ea0-f182.google.com ([209.85.215.182]:49701) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UlMLn-0006g2-LO for 14576@debbugs.gnu.org; Sat, 08 Jun 2013 12:50:48 -0400 Received: by mail-ea0-f182.google.com with SMTP id d10so493247eaj.27 for <14576@debbugs.gnu.org>; Sat, 08 Jun 2013 09:50:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=8HoiONR6WZo3LDfkdnAEgU7qNMKmKW9PA+INTb5zCZM=; b=RtdeSrnNErn6sJsmw2axqKfjJyU+NxyeBi3GGY+aY9VecddIL6VvNtk69Q/wXd+5Je AOMpeV8mG802ImBjcArh6fYrzek85F/mFYb3tboA5vZyL4QIS5qbAm31EZdz1uL5K6SR v0xJ9VL69904AyytnwmPyxHj4ASCfSPtA1oNpy7B5bhppCJ/+CUUFEClcKkdDDXeSP62 9AVm+25G3Ei95hGLhFzcLMgE01fOLWlcdRY2GY6BjQc+21FhEHvVCzhPPMMrIx6rm4Rz OS+W21RwCuIgOpknc2QTwBqP8oZrfwmAIUGVjIB+2+JrhJKkwtCJ0+PXZmWZe//u19Bk CWSw== X-Received: by 10.14.216.201 with SMTP id g49mr3695809eep.42.1370710234750; Sat, 08 Jun 2013 09:50:34 -0700 (PDT) MIME-Version: 1.0 Received: by 10.14.142.4 with HTTP; Sat, 8 Jun 2013 09:49:54 -0700 (PDT) In-Reply-To: <83ppvwsgbx.fsf@gnu.org> References: <83r4gcskwk.fsf@gnu.org> <83ppvwsgbx.fsf@gnu.org> From: Juanma Barranquero Date: Sat, 8 Jun 2013 18:49:54 +0200 Message-ID: Subject: Re: bug#14576: "make install" has trouble with non-standard locallisppath directories To: Eli Zaretskii Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 14576 Cc: 14576@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) On Sat, Jun 8, 2013 at 6:44 PM, Eli Zaretskii wrote: > "Supported" means supported by the code that was originally there for > Posix platforms and by the changes I made for using that on Windows. > Obviously, %emacs_dir% was not supported by the former; the changes I > committed support that only in src/epaths.h. OK. > If you prefer "partially supported", I agree with that. But partial > support helps only those users who know to look under the hood and do > all kinds of special tricks. For the rest of the users, this partial > support is the same as non-support. That partial support would be full support (at least on Windows) if make install didn't try to create the dirs. That's the only unsupported aspect, AFAICS. > Yes, and also the semi-colon usage (if that is what you want to be > supported). No, I don't mind that. Using /x/ instead of X: and : instead of ; in args to the MSYS machinery seems par for the course. > If by misfeature you mean the part that creates the directories in > locallisppath, then I don't object to that removal. But if it is > removed, it must be removed on all systems, not just on Windows, IMO. Agreed. Now, if the maintainers agree, we could go forward on that... From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 26 22:03:21 2013 Received: (at 14576-done) by debbugs.gnu.org; 27 Jun 2013 02:03:21 +0000 Received: from localhost ([127.0.0.1]:44114 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Us1YP-0003qF-8r for submit@debbugs.gnu.org; Wed, 26 Jun 2013 22:03:21 -0400 Received: from mail-ee0-f48.google.com ([74.125.83.48]:54029) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Us1YJ-0003px-2h for 14576-done@debbugs.gnu.org; Wed, 26 Jun 2013 22:03:19 -0400 Received: by mail-ee0-f48.google.com with SMTP id b47so70470eek.35 for <14576-done@debbugs.gnu.org>; Wed, 26 Jun 2013 19:03:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=T7MtwvLqL01WwFOiG+/0eRXFKDm7o8kND4qX1hWDb8E=; b=gXd213qGOLtbyDJgaDKwVcpIuTNIETcFS4tqykWkCcQmXfSNURXxX9OA48h9zR3wlm 9bcWDWTh+d2ILJ/JuTkKDJzWnrzjVmKJ0SAHXhA27DJ6QxP9Ypij1eD+ZCeNfqsv3iee MdBR3eJxcQKTC7VXZrwnbgzmd1ekvyoGkwN0zXtAYUrS1S3rXR8vrD7imhMCcnO1TBj8 srV1fch2r+2wvWV7FYBAJi+TUIqwqFsacSkqMk09lttY6dK+3AbJq+oZPUao57l0Pdzy ukxRw0GFzwFcv9tLSKS35eJ6VNCfFizyqNOHXhzhWLgjfTKaiYJUtX2xZ2XDLYeRtcGh 6jIw== X-Received: by 10.14.218.8 with SMTP id j8mr6484964eep.129.1372298588988; Wed, 26 Jun 2013 19:03:08 -0700 (PDT) MIME-Version: 1.0 Received: by 10.14.142.4 with HTTP; Wed, 26 Jun 2013 19:02:28 -0700 (PDT) In-Reply-To: <83r4gcskwk.fsf@gnu.org> References: <83r4gcskwk.fsf@gnu.org> From: Juanma Barranquero Date: Thu, 27 Jun 2013 04:02:28 +0200 Message-ID: Subject: Re: bug#14576: "make install" has trouble with non-standard locallisppath directories To: Eli Zaretskii Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 14576-done Cc: 14576-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Sat, Jun 8, 2013 at 5:05 PM, Eli Zaretskii wrote: > I removed from nt/INSTALL.MSYS the example that made it sound as if > %emacs_dir% is supported. Now that locallisppath does not create directories, I'd suggest reverting revno:112894 and re-adding the comment about using %emacs_dir%. It is useful advice. In fact, I'd go so far as to suggest adding a note about @VER@ (yes, full of caveats and warnings and whatnot about it being unsupported and an implementation detail, but still...) J From unknown Fri Jun 20 18:22:12 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 25 Jul 2013 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator