diff options
| author | Eli Zaretskii | 2012-02-04 10:03:49 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-02-04 10:03:49 +0200 |
| commit | ef02e37ca7de7ad1237a56e002c4fcecba1c71c3 (patch) | |
| tree | 8c040011d94850fd44b39a31c9167b32dc700366 /msdos | |
| parent | 54521c99ba1d7f93037a48622a06b478e0c152e3 (diff) | |
| download | emacs-ef02e37ca7de7ad1237a56e002c4fcecba1c71c3.tar.gz emacs-ef02e37ca7de7ad1237a56e002c4fcecba1c71c3.zip | |
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/ChangeLog | 6 | ||||
| -rw-r--r-- | msdos/sed3v2.inp | 2 |
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 @@ | |||
| 1 | 2012-02-04 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * sed3v2.inp (insrcdir): Use $(<F) rather than $<, as | ||
| 4 | command.com's "if not exist" doesn't grok forward slashes in file | ||
| 5 | names. | ||
| 6 | |||
| 1 | 2012-01-14 Eli Zaretskii <eliz@gnu.org> | 7 | 2012-01-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * sed4.inp (PATH_DUMPLOADSEARCH): Edit to "../lisp", for when the | 9 | * 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!^ \./! ! | |||
| 50 | s/movemail[^ ]* *// | 50 | s/movemail[^ ]* *// |
| 51 | } | 51 | } |
| 52 | /^insrcdir=/s/^.*$/\#&/ | 52 | /^insrcdir=/s/^.*$/\#&/ |
| 53 | /^ *\$(insrcdir) ||/s,\$(insrcdir) ||,command.com /c if not exist $<, | 53 | /^ *\$(insrcdir) ||/s,\$(insrcdir) ||,command.com /c if not exist $(<F), |
| 54 | 54 | ||