diff options
author | JF Ding <jian-feng.ding@intel.com> | 2011-08-10 14:15:02 +0800 |
---|---|---|
committer | JF Ding <jian-feng.ding@intel.com> | 2011-08-10 14:15:02 +0800 |
commit | bb380d86e744361ca70d8f674f5c2f76029ade15 (patch) | |
tree | bd9d2d8f756ccb5d64a7d598f588199e0eb74a29 /Makefile | |
parent | 96cb8032081dd7facbd1ff053491f79473cdce20 (diff) | |
download | mic-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-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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) |