[banshee] [build] Fix syntax of global "make run" rule



commit d8e6b6f876f44e2e6e6ee8195d1ce8de6e773f0a
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Tue Feb 9 15:52:47 2010 +0100

    [build] Fix syntax of global "make run" rule
    
    Running "make run" from a directory other than the top directory would
    trigger an error on exit.

 build/build.rules.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/build/build.rules.mk b/build/build.rules.mk
index d429751..7285267 100644
--- a/build/build.rules.mk
+++ b/build/build.rules.mk
@@ -40,7 +40,7 @@ all: $(ASSEMBLY_FILE) theme-icons
 
 run: 
 	@pushd $(top_builddir); \
-	make run \
+	make run; \
 	popd;
 
 build-debug:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]