[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: make src and bin, package-install-file fails
From: |
Mats Lidell |
Subject: |
Re: make src and bin, package-install-file fails |
Date: |
Sun, 29 Nov 2020 00:33:14 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) |
Hi Jean,
> Jean Louis writes:
> I have tried to do
>
> $ make src
> $ make bin
make src and make bin is for building hyperbole in place and running it from
there. It is documented in the Makefile.
# To setup Hyperbole to run directly from the latest test source
# code, use:
# git clone http://git.savannah.gnu.org/r/hyperbole.git
# cd hyperbole
# Then use either:
# make src - setup to run directly from .el files
# or
# make bin - setup to build and run from .elc files
What it does not say there is that you need to set your load-path to include
the hyperbole folder where you cloned it.
I have this setup to run from the cloned folder (~/src/hyperbole)
(add-to-list 'load-path "~/src/hyperbole")
(load "hyperbole-autoloads")
(load "hversion")
(load "hyperbole")
You should then be able to get updates by running:
git pull
make src or make bin
<restart emacs>
Yours
--
%% Mats