1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* Makefile.in (removenullpaths): Remove adjacent null paths.

Fixes: debbugs:14835
This commit is contained in:
Paul Eggert 2013-07-09 23:41:37 -07:00
parent 954b166e90
commit c6e7fc0ea7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
* Makefile.in (removenullpaths): Remove adjacent null paths (Bug#14835).
2013-07-09 Peter Rosin <peda@lysator.liu.se> (tiny change>
* configure.ac (HAVE_W32): Avoid nested functions (the second

View File

@ -293,7 +293,7 @@ all: ${SUBDIR}
.PHONY: all ${SUBDIR} blessmail epaths-force epaths-force-w32 FRC
removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g'
removenullpaths=sed -e 's/^:*//' -e 's/:*$$//g' -e 's/::*/:/g'
# Generate epaths.h from epaths.in. This target is invoked by `configure'.
# See comments in configure.ac for why it is done this way, as opposed