diff options
author | Simo Sorce <idra@samba.org> | 2008-12-22 18:10:47 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2008-12-22 18:52:47 -0500 |
commit | a93a69380dc6718c49879af628ed69f8e2b70797 (patch) | |
tree | 932359f1f8f75ade8437d7070e3feb1ffbac5898 /tevent/autogen.sh | |
parent | 9e1e585aa2740bd55bd60d965bd6c271ee9caa2e (diff) | |
download | sssd-a93a69380dc6718c49879af628ed69f8e2b70797.tar.gz sssd-a93a69380dc6718c49879af628ed69f8e2b70797.tar.bz2 sssd-a93a69380dc6718c49879af628ed69f8e2b70797.zip |
rebase events to tevent and align to upstream
Diffstat (limited to 'tevent/autogen.sh')
-rwxr-xr-x | tevent/autogen.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tevent/autogen.sh b/tevent/autogen.sh new file mode 100755 index 00000000..7a1e7ab9 --- /dev/null +++ b/tevent/autogen.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +rm -rf autom4te.cache +rm -f configure config.h.in + +IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace -I ../../../lib/replace" +autoconf $IPATHS || exit 1 +autoheader $IPATHS || exit 1 + +rm -rf autom4te.cache + +echo "Now run ./configure and then make." +exit 0 + |