summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJames Vasile <james@jamesvasile.com>2013-02-07 11:30:37 -0500
committerJames Vasile <james@jamesvasile.com>2013-02-07 11:30:37 -0500
commit65fe8434e334f7f695814078d1c9441462737b44 (patch)
treeff1c901a6ad91fe3deec9987634e6347f254e26f /Makefile
parent9501204fccce62a5a94fa44a503041478ce13827 (diff)
Fix paths in installed version
* Read python.config from script dir * Make dirs for pid and run Maybe making DESTDIR/var/run during make install is not needed because we can expect the target system to have /var/run, but if it's missing the CherryPy engine will fail when it tries to write the pid. So I added it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92a66ec..847df38 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@ install: default
cp share/init.d/plinth $(DESTDIR)/etc/init.d
rm -f $(DESTDIR)/usr/bin/plinth
ln -s ../lib/python2.7/plinth/plinth.py $(DESTDIR)/usr/bin/plinth
- mkdir -p $(DESTDIR)/var/lib/plinth/cherrypy_sessions
+ mkdir -p $(DESTDIR)/var/lib/plinth/cherrypy_sessions $(DESTDIR)/var/log/plinth $(DESTDIR)/var/run
cp -r data/* $(DESTDIR)/var/lib/plinth
rm -f $(DESTDIR)/var/lib/plinth/users/sqlite3.distrib