mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
Portable Makefile fix
This commit is contained in:
parent
ab433cfe65
commit
6821f5ef4a
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ lexicon_filter: lexicon.txt lexicon_filter.in
|
|||
# /bin or /usr/bin and some versions dont allow more than one comment!.
|
||||
sed <$@.in >$@.tmp -e 's|@sed@|'"`which sed`"'|' -e '/^[ ]*#[^!]/d'
|
||||
# Scan through the lexicon, transforming each line to something useful to Doxygen.
|
||||
if `echo "x" | sed "/[[:<:]]x/d"`; then \
|
||||
if `echo "x" | sed "/[[:<:]]x/d" 2>/dev/null`; then \
|
||||
WORDBL='[[:<:]]'; WORDBR='[[:>:]]'; \
|
||||
else\
|
||||
WORDBL='\\<'; WORDBR='\\>'; \
|
||||
|
|
Loading…
Reference in a new issue