[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Gemas.app needs HighlighterKit
From: |
Wolfgang Lux |
Subject: |
Re: Gemas.app needs HighlighterKit |
Date: |
Fri, 22 May 2020 12:49:57 +0200 |
> Am 22.05.2020 um 00:32 schrieb Patrick Cardona via Discussion list for the
> GNUstep programming environment <discuss-gnustep@gnu.org>:
>
> Hi All GNUstep Masters,
>
> I am trying to make Gemas editor from source. First step, I need to make
> the HighlighterKit Library.
> But this lib fails to install :
>
> 1) I try first without root privileges with the hope it will install on my
> personal ~GNUstep/Library folder :
You need to explicitly tell make to install in your home directory rather than
the system paths. Just add GNUSTEP_INSTALLATION_DOMAIN=USER to the make
install command line to do that:
make install GNUSTEP_INSTALLATION_DOMAIN=USER
Wolfgang