Skip to content

Commit

Permalink
Support customize prefix for make
Browse files Browse the repository at this point in the history
If user using different python interpreter with customize prefix,
it can then install Guake with customize prefix now:

    $ make
    $ PYTHON_INTERPRETER=python3.7 prefix=~/.local/pythons/3.7 make install
    $ which guake
      ~/.local/pythons/3.7/bin/guake
  • Loading branch information
mlouielu authored and gsemet committed May 3, 2019
1 parent a6b5e9c commit 33863bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
PYTHON_INTERPRETER?=python3
MODULE:=guake
DESTDIR:=/
prefix:=/usr/local
prefix?=/usr/local
exec_prefix:=$(prefix)
bindir = $(exec_prefix)/bin

Expand Down
2 changes: 2 additions & 0 deletions releasenotes/notes/fix-make-prefix-161844c63e1cd2b7.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fixes:
- Support customize prefix for make

0 comments on commit 33863bd

Please sign in to comment.