Set GNUSTEP_CORE_SOFTWARE to YES so that project center is installed by default in SYSTEM if gnustep-make has been configured with --disable-packages

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27338 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2008-12-18 19:25:05 +00:00
parent 0fcb14a78f
commit dd04c2f9b6
15 changed files with 33 additions and 14 deletions

View file

@ -1,3 +1,18 @@
2008-12-18 Nicola Pero <nicola.pero@meta-innovation.com>
* Framework/GNUmakefile.preamble (GMAKE): Take advantage of the
MAKE variable, which must already be set to the correct make else
we wouldn't be able to compile PC itself, when searching for a
working make. (GMAKE, GDB): Use := to void spawning a subshell
every time one of these variables is read.
2008-12-18 Nicola Pero <nicola.pero@meta-innovation.com>
* All GNUmakefiles: added GNUSTEP_CORE_SOFTWARE=YES at the
beginning.
* GNUmakefile: Export GNUSTEP_CORE_SOFTWARE to reduce chances of a
problem if a GNUmakefile in a subdirectory is missing it.
2008-12-17 Richard frith-Macdonald <rfm"gnu.org>
Where files are to be entered using NSOpenPanel and a 'set' button,

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - Generated by ProjectCenter
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -33,9 +33,10 @@
# be put into Makefile.postamble.
#
# TODO: Make sure if it's portable
GMAKE = `which gmake`
GDB = `which gdb`
# FIXME: Why are we hardcoding the full path to 'make' or 'gdb' in
# here ? Can't we discover them at runtime ?
GMAKE := $(shell which ${MAKE})
GDB := $(shell which gdb)
#
# Flags dealing with compiling and linking

View file

@ -9,6 +9,8 @@ ifeq ($(GNUSTEP_MAKEFILES),)
$(error You need to set GNUSTEP_MAKEFILES before compiling!)
endif
GNUSTEP_CORE_SOFTWARE = YES
export GNUSTEP_CORE_SOFTWARE
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - ProjectCenter.debugger
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - ProjectCenter.editor
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -17,6 +17,7 @@
# - ObjectiveC -- that's it!
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - ProjectCenter.parser
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - Aggregate.project
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - ApplicationProject
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - BundleProject
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - FrameworkProject
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - LibraryProject
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - Aggregate.project
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#

View file

@ -1,7 +1,7 @@
#
# GNUmakefile - ToolProject
#
GNUSTEP_CORE_SOFTWARE = YES
include $(GNUSTEP_MAKEFILES)/common.make
#