summaryrefslogtreecommitdiff
path: root/msdos
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-02-04 10:03:49 +0200
committerEli Zaretskii <eliz@gnu.org>2012-02-04 10:03:49 +0200
commitef02e37ca7de7ad1237a56e002c4fcecba1c71c3 (patch)
tree8c040011d94850fd44b39a31c9167b32dc700366 /msdos
parent54521c99ba1d7f93037a48622a06b478e0c152e3 (diff)
downloademacs-ef02e37ca7de7ad1237a56e002c4fcecba1c71c3.tar.gz
Fix MS-DOS build in lib-src.
msdos/sed3v2.inp (insrcdir): Use $(<F) rather than $<, as command.com's "if not exist" doesn't grok forward slashes in file names.
Diffstat (limited to 'msdos')
-rw-r--r--msdos/ChangeLog6
-rw-r--r--msdos/sed3v2.inp2
2 files changed, 7 insertions, 1 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog
index 34f7b802de0..b057a06bbd6 100644
--- a/msdos/ChangeLog
+++ b/msdos/ChangeLog
@@ -1,3 +1,9 @@
+2012-02-04 Eli Zaretskii <eliz@gnu.org>
+
+ * sed3v2.inp (insrcdir): Use $(<F) rather than $<, as
+ command.com's "if not exist" doesn't grok forward slashes in file
+ names.
+
2012-01-14 Eli Zaretskii <eliz@gnu.org>
* sed4.inp (PATH_DUMPLOADSEARCH): Edit to "../lisp", for when the
diff --git a/msdos/sed3v2.inp b/msdos/sed3v2.inp
index 80adad45fbf..c147ad64cf9 100644
--- a/msdos/sed3v2.inp
+++ b/msdos/sed3v2.inp
@@ -50,5 +50,5 @@ s!^ \./! !
s/movemail[^ ]* *//
}
/^insrcdir=/s/^.*$/\#&/
-/^ *\$(insrcdir) ||/s,\$(insrcdir) ||,command.com /c if not exist $<,
+/^ *\$(insrcdir) ||/s,\$(insrcdir) ||,command.com /c if not exist $(<F),