mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find . -type d -name .deps | xargs rm -rf
|
|
rm -rf config.guess config.sub ltmain.sh
|
|
libtoolize --automake
|
|
aclocal -I autoconf 2>/dev/null &&
|
|
autoheader &&
|
|
automake --add-missing --include-deps # 2>/dev/null &&
|
|
autoconf
|
|
|