mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
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.
|
## This finds a lot of duplicates between foo.el and obsolete/foo.el.
|
||||||
check-defun-dups:
|
check-defun-dups:
|
||||||
sed -n -e '/^(defun /s/\(.\)(.*/\1/p' \
|
sed -n -e '/^(defun /s/\(.\)(.*/\1/p' \
|
||||||
$$(find . -name '*.el' ! -name '.*' -print | \
|
`find . -name '*.el' ! -name '.*' -print | \
|
||||||
grep -Ev '(loaddefs|ldefs-boot)\.el|obsolete') | sort | uniq -d
|
grep -Ev '(loaddefs|ldefs-boot)\.el|obsolete'` | sort | uniq -d
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue