From: "dhruva" <seagull@fastmail.fm>
Subject: emacs/lispref/Makefile.in: Minor fix for MS Win port
Date: Wed, 20 Aug 2003 13:35:15 +0530 [thread overview]
Message-ID: <20030820080515.9CB46772E7@smtp.us2.messagingengine.com> (raw)
Hello,
I had sent a mail with this fix but my mail server went off. I am not
sure whether the mail was sent. Incase it is duplicated, my apologies.
In emacs/lispref/Makefile.in, a call to 'ln -s' is done on 'index.texi.
The MinGW/Win32 port of 'ln' creates a symbolic link with a '.lnk'
extension. Hence, "ln -s index.perm index.texi" results in a file
"index.texi.lnk" instead of "index.texi". This causes a build failure for
emacs/lispref. I have made a trivial modification.
with regards,
dhruva
[dky]diff -burN D:\tmp\cvs\emacs\emacs\lispref\Makefile.in Makefile.in
--- D:\tmp\cvs\emacs\emacs\lispref\Makefile.in 2003-08-13
19:45:11.000000000 +0530
+++ Makefile.in 2003-08-20 09:51:04.000000000 +0530
@@ -135,6 +135,11 @@
else \
ln -s $(srcdir)/index.unperm index.texi || ln
$(srcdir)/index.unperm index.texi || cp $(srcdir)/index.unperm
index.texi; \
fi
+ # For MS port of ln
+ if [ -f index.texi.lnk ]; \
+ then \
+ mv index.texi.lnk index.texi; \
+ fi
install: elisp
$(srcdir)/mkinstalldirs $(infodir)
--
Dhruva Krishnamurthy
Web: http://schemer.fateback.com/
next reply other threads:[~2003-08-20 8:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-20 8:05 dhruva [this message]
-- strict thread matches above, loose matches on Subject: below --
2003-08-20 4:32 emacs/lispref/Makefile.in: Minor fix for MS Win port dhruva
2003-08-22 9:12 ` Jason Rumney
2003-08-22 11:48 ` dhruva
2003-08-22 16:39 ` Peter 'Luna' Runestig
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030820080515.9CB46772E7@smtp.us2.messagingengine.com \
--to=seagull@fastmail.fm \
/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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).