mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-10-31 18:52:29 +00:00
10 lines
294 B
Bash
Executable File
10 lines
294 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Generating configure files... may take a while."
|
|
|
|
autoreconf --install --force && \
|
|
echo "Preparing was successful if there was no error messages above." && \
|
|
echo "Now type:" && \
|
|
echo " ./configure && make" && \
|
|
echo "Run './configure --help' for more information"
|