mirror of
https://github.com/coolsnowwolf/packages
synced 2025-01-09 19:57:38 +08:00
d14c1f1f6f
Fix shebang errors for autom4te, autoreconf, autoheader, autoscan, autoupdate, ifnames. resolve openwrt/packages#16604 Signed-off-by: Ren Zongjia <acooler15@foxmail.com>
9 lines
248 B
Bash
9 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
|