diff options
author | Sergey M <dstftw@gmail.com> | 2016-03-20 11:08:57 +0500 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2016-03-20 11:08:57 +0500 |
commit | d396f30467e519b0e78ec1dcf9a38ba122d44e59 (patch) | |
tree | 237f498f7275008a09d88ab07244d98ee5e98349 | |
parent | 96a9f22d983e414583f52eafece7902b1248377b (diff) | |
parent | 3ff63fb3657fee9e0c2df9d5bb96ae5827f257cc (diff) |
Merge pull request #8902 from jaimeMF/bmake
Makefile: make it compatible with bmake
-rw-r--r-- | Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -12,15 +12,7 @@ SHAREDIR ?= $(PREFIX)/share PYTHON ?= /usr/bin/env python # set SYSCONFDIR to /etc if PREFIX=/usr or PREFIX=/usr/local -ifeq ($(PREFIX),/usr) - SYSCONFDIR=/etc -else - ifeq ($(PREFIX),/usr/local) - SYSCONFDIR=/etc - else - SYSCONFDIR=$(PREFIX)/etc - endif -endif +SYSCONFDIR != if [ $(PREFIX) = /usr -o $(PREFIX) = /usr/local ]; then echo /etc; else echo $(PREFIX)/etc; fi install: youtube-dl youtube-dl.1 youtube-dl.bash-completion youtube-dl.zsh youtube-dl.fish install -d $(DESTDIR)$(BINDIR) |