Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2008-12-29 07:06:48 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2008-12-29 07:06:48 (GMT)
commit54314e1125f52b22086ebcea33fbba40c567631c (patch)
treeeac7fe4578e1e37db6d80efab7bc2e3d471ab13d
parent1c4f991f397a88dcdae620c26ef39b0ecc606c75 (diff)
fix .so install options
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fa80764..8b9aef5 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,6 @@ all clean:
$(MAKE) -C common/Util/Clooper $@
install:
- install -Dm 0644 common/Util/Clooper/aclient.so $(DESTDIR)/$(pythondir)/tamtam/aclient.so
+ install -Dsm 0755 common/Util/Clooper/aclient.so $(DESTDIR)/$(pythondir)/tamtam/aclient.so
touch $(DESTDIR)/$(pythondir)/tamtam/__init__.py
cd common/Resources && find -type f ! -name '*.py' -exec install -Dm 0644 {} $(DESTDIR)/usr/share/tamtam/{} \;