> Am 22.05.2020 um 00:32 schrieb Patrick Cardona via Discussion list for the > GNUstep programming environment <[email protected]>: > > 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
