mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 21:54:17 +01:00
Use space around operators in makefiles
This commit is contained in:
parent
7f99c30b31
commit
bbe19735a1
8
Makefile
8
Makefile
@ -4,9 +4,9 @@ all: svtplay-dl
|
|||||||
|
|
||||||
VERSION = 0.9
|
VERSION = 0.9
|
||||||
|
|
||||||
PREFIX?=/usr/local
|
PREFIX ?= /usr/local
|
||||||
BINDIR=$(PREFIX)/bin
|
BINDIR = $(PREFIX)/bin
|
||||||
MANDIR=$(PREFIX)/share/man/man1
|
MANDIR = $(PREFIX)/share/man/man1
|
||||||
|
|
||||||
# Compress the manual if MAN_GZIP is set to y,
|
# Compress the manual if MAN_GZIP is set to y,
|
||||||
ifeq ($(MAN_GZIP),y)
|
ifeq ($(MAN_GZIP),y)
|
||||||
@ -19,7 +19,7 @@ MANFILE = svtplay-dl.1$(MANFILE_EXT)
|
|||||||
POD2MAN ?= pod2man --section 1 --utf8 -c "svtplay-dl manual" \
|
POD2MAN ?= pod2man --section 1 --utf8 -c "svtplay-dl manual" \
|
||||||
-r "svtplay-dl $(VERSION)"
|
-r "svtplay-dl $(VERSION)"
|
||||||
|
|
||||||
PYTHON=/usr/bin/env python
|
PYTHON = /usr/bin/env python
|
||||||
export PYTHONPATH=lib
|
export PYTHONPATH=lib
|
||||||
|
|
||||||
# Disable convention, refactor, and TODO warnings
|
# Disable convention, refactor, and TODO warnings
|
||||||
|
Loading…
Reference in New Issue
Block a user