mirror of
https://github.com/octoleo/lsyncd.git
synced 2025-01-22 14:48:29 +00:00
for older boxes this can be useful to pick the right automake binary.
This commit is contained in:
parent
441e1488b6
commit
c09dcd1775
@ -1,7 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# simplistic script to run after checkout
|
# simplistic script to run after checkout
|
||||||
|
|
||||||
aclocal && \
|
# In case of explicit having a 1.7 version use that (for systems having multiple automake versions installed)
|
||||||
|
ACLOCAL=`which aclocal-1.7 || echo aclocal`
|
||||||
|
AUTOMAKE=`which automake-1.7 || echo automake`
|
||||||
|
|
||||||
|
$ACLOCAL && \
|
||||||
autoheader && \
|
autoheader && \
|
||||||
autoconf && \
|
autoconf && \
|
||||||
automake -a -c
|
$AUTOMAKE -a -c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user