Browse Source

makefile: Fix mkdep command to work when cross compiling.

Georgi Chorbadzhiyski 12 years ago
parent
commit
0fb86eef88
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Makefile

+ 1
- 1
Makefile View File

@@ -1,6 +1,6 @@
1 1
 CC = $(CROSS)$(TARGET)cc
2 2
 STRIP = $(CROSS)$(TARGET)strip
3
-MKDEP = $(CROSS)$(TARGET)$(CC) -M -o $*.d $<
3
+MKDEP = $(CC) -M -o $*.d $<
4 4
 
5 5
 BUILD_ID = $(shell date +%F_%R)
6 6
 VERSION = $(shell cat RELEASE)

Loading…
Cancel
Save