mirror of
https://github.com/pbatard/rufus.git
synced 2025-07-20 16:55:17 +00:00
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p m4
|
|
aclocal || exit 1
|
|
automake -a -c || exit 1
|
|
autoconf || exit 1
|
|
rm -rf autom4te.cache
|
|
rm -d m4
|