Something I forgot to mention, after cloning the latest awesome head,
I had to change the awesomeConfig.cmake to get it to compile, here is
a patch to fix that (this however is unrelated to the bug discussed in
this thread).
Cheers,
Alex
On Thu, Nov 13, 2008 at 1:43 PM, Alex Cornejo <[EMAIL PROTECTED]> wrote:
>> Yes. This patch makes no sense to me since exluding .in files from
>> build_dir is useless: there should not be any .in file.
>> Can you clean everything using make distclean or git clean and doucle
>> check?
>
> I did something better than that:
>
> rm -fR awesome
> rm -fR /usr/share/awesome
> git clone git://git.naquadah.org/awesome.git
>
>> Initialized empty Git repository in /scratch/devel/awesome/.git/
>> remote: Counting objects: 17920, done.
>> remote: Compressing objects: 100% (6181/6181), done.
>> remote: Total 17920 (delta 13553), reused 15279 (delta 11716)
>> Receiving objects: 100% (17920/17920), 3.18 MiB | 1481 KiB/s, done.
>> Resolving deltas: 100% (13553/13553), done.
>
> cmake -DPREFIX=/usr .
> make
> sudo make install
>
> l /usr/share/awesome/themes/default/theme.in
>> -rw-r--r-- 1 root root 2.3K 2008-11-13 10:30
>> /usr/share/awesome/themes/default/theme.in
>
> So the bug is real in my system. Julien, could you please try the same
> procedure? (clone a clean copy from git, and install it from there
> just to check its not something limited to Gregor and myself).
>
> About your comment on the patch, well, what can I say, cmake does not
> make sense to me at all, but changing those lines the way I did seemed
> to work here ;)
>
> Cheers,
>
>>
>> Cheers,
>> --
>> Julien Danjou
>> // ᐰ <[EMAIL PROTECTED]> http://julien.danjou.info
>> // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD
>>
>> -----BEGIN PGP SIGNATURE-----
>> Version: GnuPG v1.4.9 (GNU/Linux)
>>
>> iEYEARECAAYFAkkb95oACgkQpGK1HsL+5c3TkgCgySo0TJqmVx6p3ccta4V9AZrx
>> b/UAn1PEOjK6Bn0ZqzX9WKkTsNH2ZRNu
>> =/jU2
>> -----END PGP SIGNATURE-----
>>
>>
>
From dff888941b92e67126dbb421ef4ea8a22b928386 Mon Sep 17 00:00:00 2001
From: Alex Cornejo <[EMAIL PROTECTED]>
Date: Thu, 13 Nov 2008 13:44:04 -0500
Subject: [PATCH] Fixed bug in xcb version checking.
---
awesomeConfig.cmake | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/awesomeConfig.cmake b/awesomeConfig.cmake
index b54524c..09458fe 100644
--- a/awesomeConfig.cmake
+++ b/awesomeConfig.cmake
@@ -127,7 +127,7 @@ execute_process(
# Use pkgconfig to get most of the libraries
pkg_check_modules(AWESOME_COMMON_REQUIRED REQUIRED
- xcb>=1.1.0)
+ xcb>=1.1)
pkg_check_modules(AWESOME_REQUIRED REQUIRED
glib-2.0
--
1.5.6.5