From f7c6469ee19aa8838cbc5dc9d804929b3ae3d61f Mon Sep 17 00:00:00 2001 From: Paweł Zuzelski Date: Sat, 12 Jun 2010 00:42:43 +0200 Subject: create bin dir if it does *NOT* exist --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79eedad..b922264 100644 --- a/Makefile +++ b/Makefile @@ -88,7 +88,8 @@ strip: install: install-uzbl-core install-uzbl-browser install-uzbl-tabbed install-dirs: - [ -d "$(INSTALLDIR)/bin" ] && install -d -m755 $(INSTALLDIR)/bin + [ -d "$(INSTALLDIR)/bin" ] || install -d -m755 $(INSTALLDIR)/bin + install-uzbl-core: all install-dirs install -d $(INSTALLDIR)/share/uzbl/ install -d $(DOCDIR) -- cgit v1.2.3