This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

master - misc: remove exec bits from different files


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=474a67543034f409f56ab0f9f4bd6c17a0936d07
Commit:        474a67543034f409f56ab0f9f4bd6c17a0936d07
Parent:        be871661c2a33b908cba9fda02a213b5a00a75e5
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Wed Aug 20 12:27:02 2008 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Wed Aug 20 12:28:31 2008 +0200

misc: remove exec bits from different files

use python setup.py instead of invoking ./setup.py.

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 contrib/askant/Makefile       |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/contrib/askant/Makefile b/contrib/askant/Makefile
index cd80640..d817243 100644
--- a/contrib/askant/Makefile
+++ b/contrib/askant/Makefile
@@ -10,15 +10,15 @@ CFLAGS += -I$(SRCDIR)/gfs2/include
 LDFLAGS += -L$(OBJDIR)/gfs2/libgfs2 -lgfs2
 
 build:
-	CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./setup.py build
+	CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" python setup.py build
 
 install:
-	./setup.py install --root $(DESTDIR)
+	python setup.py install --root $(DESTDIR)
 
 uninstall:
 	@echo UNINSTALL TARGET UNSUPPORTED
 
 clean:
-	./setup.py clean
+	python setup.py clean
 	rm askant/*.pyc
 	rm -rf build
diff --git a/contrib/askant/scripts/askant b/contrib/askant/scripts/askant
old mode 100755
new mode 100644
diff --git a/contrib/askant/setup.py b/contrib/askant/setup.py
old mode 100755
new mode 100644


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]