mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 10:23:17 +00:00
6 lines
145 B
Bash
Executable file
6 lines
145 B
Bash
Executable file
#!/bin/sh
|
|
# Runs the autoreconf tool, creating the configure script
|
|
|
|
[ -d m4 ] || mkdir m4
|
|
autoreconf -i -W all
|
|
echo you can now run ./configure
|