From 9d4757988c8a360aefdf022debab85ce9663aa24 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Mon, 4 May 2009 07:23:46 +0000 Subject: [PATCH] Add some info output git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28267 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 14 ++++++++++++++ Documentation/GNUmakefile | 9 +++++++++ Examples/GNUmakefile | 9 +++++++++ GNUmakefile | 9 +++++++++ NSCharacterSets/GNUmakefile | 9 +++++++++ NSTimeZones/GNUmakefile | 9 +++++++++ Resources/GNUmakefile | 9 +++++++++ SSL/GNUmakefile | 9 +++++++++ Source/GNUmakefile | 9 +++++++++ Tools/GNUmakefile | 9 +++++++++ 10 files changed, 95 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6de07ec07..1ec8a62bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2009-03-04 Richard Frith-Macdonald + + * NSCharacterSets/GNUmakefile: + * Source/GNUmakefile: + * SSL/GNUmakefile: + * Documentation/GNUmakefile: + * Resources/GNUmakefile: + * Examples/GNUmakefile: + * NSTimeZones/GNUmakefile: + * GNUmakefile: + * Tools/GNUmakefile: + Add help info for the case when gnustep-config can't tell us the + location of the makefiles. + 2009-05-03 Riccardo Mottola * Source/NSURLProtocol.m: Removed c99-ism diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile index 3d543daa7..d3089ea89 100644 --- a/Documentation/GNUmakefile +++ b/Documentation/GNUmakefile @@ -23,6 +23,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/Examples/GNUmakefile b/Examples/GNUmakefile index 21168d87f..97ea085d5 100644 --- a/Examples/GNUmakefile +++ b/Examples/GNUmakefile @@ -25,6 +25,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/GNUmakefile b/GNUmakefile index 21b09d99f..59f4f35da 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -25,6 +25,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/NSCharacterSets/GNUmakefile b/NSCharacterSets/GNUmakefile index 122f7bb66..50c8be92a 100644 --- a/NSCharacterSets/GNUmakefile +++ b/NSCharacterSets/GNUmakefile @@ -23,6 +23,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/NSTimeZones/GNUmakefile b/NSTimeZones/GNUmakefile index 37b0ab84d..0ff0d2572 100644 --- a/NSTimeZones/GNUmakefile +++ b/NSTimeZones/GNUmakefile @@ -23,6 +23,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/Resources/GNUmakefile b/Resources/GNUmakefile index 769754c6d..b4daa420e 100644 --- a/Resources/GNUmakefile +++ b/Resources/GNUmakefile @@ -24,6 +24,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/SSL/GNUmakefile b/SSL/GNUmakefile index 5fe21d281..7cc015f8c 100644 --- a/SSL/GNUmakefile +++ b/SSL/GNUmakefile @@ -25,6 +25,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/Source/GNUmakefile b/Source/GNUmakefile index bb3620c1a..e8f76bc01 100644 --- a/Source/GNUmakefile +++ b/Source/GNUmakefile @@ -25,6 +25,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),) diff --git a/Tools/GNUmakefile b/Tools/GNUmakefile index b9df7e353..7c89a7274 100644 --- a/Tools/GNUmakefile +++ b/Tools/GNUmakefile @@ -23,6 +23,15 @@ ifeq ($(GNUSTEP_MAKEFILES),) GNUSTEP_MAKEFILES := $(shell gnustep-config --variable=GNUSTEP_MAKEFILES 2>/dev/null) + ifeq ($(GNUSTEP_MAKEFILES),) + $(info ) + $(info Unable to obtain GNUSTEP_MAKEFILES setting from gnustep-config!) + $(info Perhaps gnustep-make is not properly installed,) + $(info so gnustep-config is not in your PATH.) + $(info ) + $(info Your PATH is currently $(PATH)) + $(info ) + endif endif ifeq ($(GNUSTEP_MAKEFILES),)