diff options
author | Dmitry Podgorny <pasis.ua@gmail.com> | 2014-03-06 02:06:22 +0200 |
---|---|---|
committer | Dmitry Podgorny <pasis.ua@gmail.com> | 2014-03-06 02:06:22 +0200 |
commit | 0fbaa6f5eee9649e245f70657a40760f37ad6fda (patch) | |
tree | c1627865a441f879afedb38d60cd3613800ec412 /src/xmpp | |
parent | a9e20289813396249b6f57c04035ed505e672337 (diff) | |
download | profani-tty-0fbaa6f5eee9649e245f70657a40760f37ad6fda.tar.gz |
fixed build error when make run with -jN option
Race can occur when gitversion file isn't fully generated before it is used.
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/capabilities.c | 2 | ||||
-rw-r--r-- | src/xmpp/iq.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/capabilities.c b/src/xmpp/capabilities.c index fc71ae54..3c286ac8 100644 --- a/src/xmpp/capabilities.c +++ b/src/xmpp/capabilities.c @@ -23,7 +23,7 @@ #include "config.h" #ifdef HAVE_GIT_VERSION -#include "gitversion.c" +#include "gitversion.h" #endif #include <stdlib.h> diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 3766d2c4..7c8a61c4 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -23,7 +23,7 @@ #include "config.h" #ifdef HAVE_GIT_VERSION -#include "gitversion.c" +#include "gitversion.h" #endif #include <stdlib.h> |