On Mon, May 25, 2009 at 7:52 PM, Robson Cardoso dos Santos
<cardoso.rcs@gmail.com> wrote:
Hi, when I try to make a package for Arch Linux I got this error message:
------------------
This is gnustep-make 2.0.7. Type 'make print-gnustep-make-help' for help.
*ERROR*: the software is configured to install itself into /opt/GNUstep/System
but you do not have permissions to write in that directory:
Aborting installation.
-------------------
So, whith this patch, the error disappears (at least for a Arch package)
--------------------
--- src-orig/Terminal-0.9.5/GNUmakefile 2009-05-23 11:59:10.000000000 -0300
+++ src/Terminal-0.9.5/GNUmakefile 2009-05-25 21:20:33.000000000 -0300
@@ -63,7 +63,7 @@
MAKE_STRINGS_OPTIONS = --aggressive-match --aggressive-remove
-GNUSTEP_INSTALLATION_DIR=$(GNUSTEP_SYSTEM_ROOT)
+GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
include $(GNUSTEP_MAKEFILES)/application.make
---------------------
Is this Ok? It's working well so far.
Actually, as far as I know, the makefile should not be defining GNUSTEP_INSTALLATION_*, and install Terminal.app into the LOCAL domain by default. To modify that, you'd need to set GNUSTEP_INSTALLATION_DOMAIN=SYSTEM during make install. My guess is that this is a bug in the makefile, left over from the previous version of Terminal.app.