From 53135405c560ca792409ec68393d5d722ba3b48d Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 14 Feb 2007 12:47:27 +0000 Subject: [PATCH] Do not set GNUSTEP_INSTALLATION_DIR in generated GNUmakefiles, to make sure they work with the new Linux FHS support git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@24558 72102866-910b-0410-8b05-ffd578937521 --- Documentation/ChangeLog | 10 +++++++++- Modules/Projects/Application/PCAppProject.m | 7 +++++++ Modules/Projects/Tool/PCToolProject.m | 7 +++++++ 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Documentation/ChangeLog b/Documentation/ChangeLog index 15cd11e..b9de8ed 100644 --- a/Documentation/ChangeLog +++ b/Documentation/ChangeLog @@ -1,3 +1,11 @@ +2007-02-14 Nicola Pero + + * Modules/Projects/Application/PCAppProject.m: Do not set + GNUSTEP_INSTALLATION_DIR in the GNUmakefile. This would not work + with the new filesystem support. The GUI probably needs updating + to make users aware of this. + * Modules/Projects/Tool/PCToolProject.m: Same change. + 2007-01-20 Sergii Stoian * Modules/Editors/ProjectCenter/Resources/ObjC.syntax: Update. @@ -81,7 +89,7 @@ * Added attempt to find make and debugger utilities. -2006-11-15 Nicola Pero +2006-11-15 Nicola Pero * Modules/GNUmakefile.bundles (BUNDLE_INSTALL_DIR): Install the bundles in GNUSTEP_INSTALLATION_DIR, not in GNUSTEP_SYSTEM_ROOT. diff --git a/Modules/Projects/Application/PCAppProject.m b/Modules/Projects/Application/PCAppProject.m index 53153f5..0760a08 100644 --- a/Modules/Projects/Application/PCAppProject.m +++ b/Modules/Projects/Application/PCAppProject.m @@ -543,9 +543,16 @@ } else { + /* IMPORTANT FIXME/TODO: We should be using GNUSTEP_INSTALLATION_DOMAIN, + * not GNUSTEP_INSTALLATION_DIR. Even better, we shouldn't specify + * this in the GNUmakefile itself at all unless explicitly requested + * by the user! + */ + /* [mff appendString: [NSString stringWithFormat:@"GNUSTEP_INSTALLATION_DIR = %@\n", installDir]]; + */ } } diff --git a/Modules/Projects/Tool/PCToolProject.m b/Modules/Projects/Tool/PCToolProject.m index ab5ad7d..637d0a1 100644 --- a/Modules/Projects/Tool/PCToolProject.m +++ b/Modules/Projects/Tool/PCToolProject.m @@ -367,9 +367,16 @@ } else { + /* IMPORTANT FIXME/TODO: We should be using GNUSTEP_INSTALLATION_DOMAIN, + * not GNUSTEP_INSTALLATION_DIR. Even better, we shouldn't specify + * this in the GNUmakefile itself at all unless explicitly requested + * by the user! + */ + /* [mff appendString: [NSString stringWithFormat:@"GNUSTEP_INSTALLATION_DIR = %@\n", installDir]]; + */ } }