summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJF Ding <jian-feng.ding@intel.com>2011-08-10 14:15:02 +0800
committerJF Ding <jian-feng.ding@intel.com>2011-08-10 14:15:02 +0800
commitbb380d86e744361ca70d8f674f5c2f76029ade15 (patch)
treebd9d2d8f756ccb5d64a7d598f588199e0eb74a29 /Makefile
parent96cb8032081dd7facbd1ff053491f79473cdce20 (diff)
downloadmic-bb380d86e744361ca70d8f674f5c2f76029ade15.tar.gz
mic-bb380d86e744361ca70d8f674f5c2f76029ade15.tar.bz2
mic-bb380d86e744361ca70d8f674f5c2f76029ade15.zip
remove config key for release prefix name
like 'meego', need not any more
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c4fa678..d167900 100644
--- a/Makefile
+++ b/Makefile
@@ -28,9 +28,10 @@ dist-gz:
gzip > $(PKGNAME)-$(TAGVER).tar.gz
install-plugins:
- install -d ${DESTDIR}/${PLUGIN_DIR}
- install -D -m 644 plugins/imager/* ${DESTDIR}/${PLUGIN_DIR}/imager
- install -D -m 644 plugins/backend/* ${DESTDIR}/${PLUGIN_DIR}/backend
+ install -d ${DESTDIR}/${PLUGIN_DIR}/imager
+ install -m 644 plugins/imager/* ${DESTDIR}/${PLUGIN_DIR}/imager
+ install -d ${DESTDIR}/${PLUGIN_DIR}/backend
+ install -m 644 plugins/backend/* ${DESTDIR}/${PLUGIN_DIR}/backend
install: all install-plugins
$(PYTHON) setup.py install --prefix=$(DESTDIR)/$(PREFIX)