mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
03e01f2a19
* Closes #850
7 lines
115 B
Bash
Executable file
7 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
|