diff options
author | Paweł Zuzelski <pawelz@pld-linux.org> | 2010-06-12 00:42:43 +0200 |
---|---|---|
committer | Paweł Zuzelski <pawelz@pld-linux.org> | 2010-06-12 00:42:43 +0200 |
commit | f7c6469ee19aa8838cbc5dc9d804929b3ae3d61f (patch) | |
tree | 063b0fd1d28fde479168f71e14fc1c895bc7959d /Makefile | |
parent | 22a5c6787a13c5cc02637f6007cce3cd9aa7522f (diff) |
create bin dir if it does *NOT* exist
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |