[Lunar-commits] <moonbase> sound-theme-freedesktop: fix for BUILD file
Duncan Gibson
engelsman at lunar-linux.org
Sat May 8 14:12:08 CEST 2010
commit 78862632032f5dc83b8d393201710abcaf857394
Author: Jean-Michel Bruenn <jean.bruenn at ip-minds.de>
Date: Sat May 8 14:12:08 2010 +0200
sound-theme-freedesktop: fix for BUILD file
autogen expects an INSTALL file to be around and
as this file is missing it will fail - by just
adding a INSTALL file the module will compile
quite fine :)
---
audio/sound-theme-freedesktop/BUILD | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/audio/sound-theme-freedesktop/BUILD b/audio/sound-theme-freedesktop/BUILD
index 2632f9f..4a304b5 100644
--- a/audio/sound-theme-freedesktop/BUILD
+++ b/audio/sound-theme-freedesktop/BUILD
@@ -1,6 +1,11 @@
(
- ./autogen.sh &&
+ # autogen fails if no INSTALL file is there..
+ if [ ! -f INSTALL ]; then
+ touch INSTALL
+ chmod a+x INSTALL
+ fi
+ ./autogen.sh &&
default_build
) > $C_FIFO 2>&1
More information about the Lunar-commits
mailing list