mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 17:50:24 +08:00

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
|