Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
Fix unversioned python rfbz #5395
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiomb2 committed Sep 28, 2019
1 parent a0048ec commit 62e266b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ SOURCES += $(wildcard rhel/$(arch)/*)
DOCS += $(wildcard rhel/doc/*)
endif

lib_to_data := $(shell python -c 'import os.path; \
print os.path.relpath("$(app_datadir)", \
"$(app_libdir)")')
lib_to_data := $(shell python3 -c 'import os.path; \
print(os.path.relpath("$(app_datadir)", \
"$(app_libdir)"))')
all: help

lib_to_data:
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fi
echo " ldconfig:... $sts"

echo -n " python: "
sts="$(python --version 2>&1) (ok)" || sts="ERROR: Not found"
sts="$(python3 --version 2>&1) (ok)" || sts="ERROR: Not found"
echo $sts

if [ -z "$package" ]; then
Expand Down

0 comments on commit 62e266b

Please sign in to comment.