remove bogus check for mingw

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27446 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-12-29 06:35:09 +00:00
parent bc64f6c30b
commit 2a642f30c1
2 changed files with 10 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2008-12-29 Richard Frith-Macdonald <rfm@gnu.org>
* Makefile.postamble (before-all): Remove test for mingw on situation
which can occur on all systems, not just mingw.
2008-12-25 11:10-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/GNUmakefile: Add new NSObjectNSComparisonMethods.m

View file

@ -32,18 +32,18 @@
# otherwise the normal makefile rules will not be performed.
#
# On MinGW, make sure the domain that we are installing into matches
# the domain that we were configured with. If they don't match, print
# an error message and reconfigure.
ifeq ($(findstring mingw32, $(GNUSTEP_TARGET_OS)), mingw32)
# Things to do before compiling
# Make sure the domain that we are installing into matches the domain that
# we were configured with (in case NSPathUtilities is using paths relative
# to the location of the gnustep config file or the base library ... usually
# the case on ms-windows, sometimes the case on unix).
# If they don't match, print an error message and reconfigure.
before-all::
$(ECHO_NOTHING)if [ "$(GNUSTEP_BASE_DOMAIN)" != "$(GNUSTEP_INSTALLATION_DOMAIN)" ]; \
then \
echo "GNUSTEP_INSTALLATION_DOMAIN does not match GNUSTEP_BASE_DOMAIN; reconfiguring"; \
GNUSTEP_INSTALLATION_DOMAIN=$(GNUSTEP_INSTALLATION_DOMAIN) ./config.status --recheck; \
fi$(END_ECHO)
endif
# Things to do after compiling
# after-all::