From 1e7ade644d5e179a36c077375ff6e1f2f41f1027 Mon Sep 17 00:00:00 2001 From: Steven Luo Date: Fri, 18 Dec 2009 02:25:26 -0800 Subject: [PATCH] mkdir all the directories to which we install files, not just some of them --- Makefile | 1 + config-ui/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 82a001b..d12b7d7 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ strip: $(APP) install: all mkdir -p $(DESTDIR)$(PREFIX)/bin + mkdir -p $(DESTDIR)$(PREFIX)/share/dbus-1/services install -c -m 0755 browser-switchboard $(DESTDIR)$(PREFIX)/bin install -c -m 0644 com.nokia.osso_browser.service $(DESTDIR)$(PREFIX)/share/dbus-1/services install -c -m 0755 browser $(DESTDIR)$(PREFIX)/bin diff --git a/config-ui/Makefile b/config-ui/Makefile index 3ead186..c88c3bf 100644 --- a/config-ui/Makefile +++ b/config-ui/Makefile @@ -50,7 +50,8 @@ strip: $(PLUGIN) strip $(PLUGIN) install: all - mkdir -p $(DESTDIR)$(PREFIX)/share/hildon-control-panel + mkdir -p $(DESTDIR)$(PREFIX)/lib/hildon-control-panel + mkdir -p $(DESTDIR)$(PREFIX)/share/applications/hildon-control-panel install -c -m 0755 $(PLUGIN) $(DESTDIR)$(PREFIX)/lib/hildon-control-panel install -c -m 0644 $(APP).desktop $(DESTDIR)$(PREFIX)/share/applications/hildon-control-panel -- 1.7.9.5