Fix portability problem in lisp/Makefile.in
* lisp/Makefile.in (check-defun-dups): Avoid POSIX command substitutions.
This commit is contained in:
parent
a5d142e830
commit
31a66dc891
1 changed files with 2 additions and 2 deletions
|
@ -490,8 +490,8 @@ check-declare:
|
|||
## This finds a lot of duplicates between foo.el and obsolete/foo.el.
|
||||
check-defun-dups:
|
||||
sed -n -e '/^(defun /s/\(.\)(.*/\1/p' \
|
||||
$$(find . -name '*.el' ! -name '.*' -print | \
|
||||
grep -Ev '(loaddefs|ldefs-boot)\.el|obsolete') | sort | uniq -d
|
||||
`find . -name '*.el' ! -name '.*' -print | \
|
||||
grep -Ev '(loaddefs|ldefs-boot)\.el|obsolete'` | sort | uniq -d
|
||||
|
||||
# Dependencies
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue