diff options
author | 2011-10-13 19:25:18 +0000 | |
---|---|---|
committer | 2011-10-13 19:25:18 +0000 | |
commit | 1053487ae4134de9e3067f2e17a453332b4aa49c (patch) | |
tree | 5a78418587e83d3f0a92baa3a0dfa6c9831eb60c | |
parent | cac7bb5aa90885a9628f8cbbf37b16e11a20a9d1 (diff) | |
download | paludis-1053487ae4134de9e3067f2e17a453332b4aa49c.tar.gz paludis-1053487ae4134de9e3067f2e17a453332b4aa49c.tar.xz |
Add git sha1sum to .so names when it's specified.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ab3e84a35..f6edefbb0 100644 --- a/configure.ac +++ b/configure.ac @@ -52,7 +52,7 @@ dnl }}} PALUDIS_PC_VERSION="${VERSION_FULL}" PALUDIS_PC_SLOT="${VERSION_MAJOR}.${VERSION_MINOR}${VERSION_SUFFIX}" -if test x"$((VERSION_MINOR % 2))" = x"1" ; then +if test x"$((VERSION_MINOR % 2))" = x"1" || test -n "${GITHEAD}" ; then PALUDIS_PC_SLOT="${PALUDIS_PC_SLOT}_"`echo ${GITHEAD} | sed -e 's,\(........\(-dirty\)\?\)$,#\1,' -e 's,.*#,,'` fi |