On Oct 11, 2020, at 13:17, Tim Camp <[email protected]> wrote:

>  /usr/bin/install -c -m 644 pypad.py '/usr/local/lib/python3.6/site-packages’


That definitely looks like the wrong location for the Python 3.6 modules 
(unless you installed it yourself from source).

Are you building from the release tarball, or from the Git repo? Reason I ask: 
we auto-detect Python with Automake’s AM_PATH_PYTHON() macro. One of things 
that I have discovered about that macro is that it needs to be new enough to 
recognize the version of Python you’ve got. (This is why I always generate 
release tarballs on a recently-updated Fedora setup; Fedora does a *much* 
better job about keeping up with current Python releases than RedHat/CentOS).

Thus, it could be worth a try to regenerate that macro. To do that, start with 
a new source tree, then do:

        ./autogen.sh
        ./configure
        make maintainer-clean
        ./autogen.sh

and then, invoke ‘configure’ and build as you normally would. You’ll need 
Autconf, Automake and Libtool installed and updated to the latest versions you 
can find.

Cheers!


|---------------------------------------------------------------------|
| Frederick F. Gleason, Jr. |             Chief Developer             |
|                           |             Paravel Systems             |
|---------------------------------------------------------------------|
|         A room without books is like a body without a soul.         |
|                                                                     |
|                                                         -- Cicero   |
|---------------------------------------------------------------------|
_______________________________________________
Rivendell-dev mailing list
[email protected]
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev

Reply via email to