summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-06-09 20:20:10 +0000
committerJames Bursa <james@netsurf-browser.org>2004-06-09 20:20:10 +0000
commit523f727d69d139292af720d3eac60cc54a9dca2d (patch)
tree7844a23fc7795124c8fea42a38391b7d636dc220 /makefile
parent9b1cbd7622e80723cebdbf11e3b784ba3628db5e (diff)
downloadnetsurf-523f727d69d139292af720d3eac60cc54a9dca2d.tar.gz
netsurf-523f727d69d139292af720d3eac60cc54a9dca2d.tar.bz2
[project @ 2004-06-09 20:20:10 by bursa]
Fix include depend problem. svn path=/import/netsurf/; revision=942
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 5cbcbc70c..93940fa2a 100644
--- a/makefile
+++ b/makefile
@@ -67,7 +67,7 @@ OBJS_GTK=$(OBJECTS_GTK:%.o=$(OBJDIR_GTK)/%.o)
# Inclusion of platform specific files has to occur after the OBJDIR stuff as
# that is refered to in the files
-OS = $(word 2,$(subst -, ,$(shell $(CC) -dumpmachine)))
+OS = $(word 2,$(subst -, ,$(shell gcc -dumpmachine)))
ifeq ($(OS),riscos)
include riscos.mk
else