Fix shebang errors for autom4te, autoreconf, autoheader, autoscan, autoupdate, ifnames.
resolve openwrt/packages#16604
Signed-off-by: Ren Zongjia <acooler15@foxmail.com>
(cherry picked from commit 72f3dfcb0e
)
Signed-off-by: Ren Zongjia <acooler15@foxmail.com>
8 lines
248 B
Bash
8 lines
248 B
Bash
#!/bin/sh
|
|
autoconf --version | grep $2 && \
|
|
autoheader --version | grep $2 && \
|
|
autom4te --version | grep $2 && \
|
|
autoreconf --version | grep $2 && \
|
|
autoscan --version | grep $2 && \
|
|
autoupdate --version | grep $2 && \
|
|
ifnames --version | grep $2
|