Skip to content

Commit

Permalink
Fix stdeb in virtualenv behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
svpcom committed Aug 14, 2024
1 parent 5d06aab commit a79a9ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ all: all_bin gs.key test

$(ENV):
virtualenv --python=$(PYTHON) $(ENV)
PATH=$(ENV)/bin:$(ENV)/local/bin:$(PATH) pip install --upgrade pip setuptools $(STDEB)
$$(PATH=$(ENV)/bin:$(ENV)/local/bin:$(PATH) which pip3) install --upgrade pip setuptools $(STDEB)

all_bin: wfb_rx wfb_tx wfb_keygen wfb_tx_cmd

Expand Down Expand Up @@ -59,7 +59,7 @@ rpm: all_bin $(ENV)

deb: all_bin $(ENV)
rm -rf deb_dist
PATH=$(ENV)/bin:$(ENV)/local/bin:$(PATH) python ./setup.py --command-packages=stdeb.command bdist_deb
$$(PATH=$(ENV)/bin:$(ENV)/local/bin:$(PATH) which python3) ./setup.py --command-packages=stdeb.command bdist_deb
rm -rf wfb_ng.egg-info/ wfb-ng-$(VERSION).tar.gz

bdist: all_bin
Expand Down

0 comments on commit a79a9ce

Please sign in to comment.