Browse Source

build: Use CROSS prefix when caling strip.

Georgi Chorbadzhiyski 10 years ago
parent
commit
c0d7d4daed
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Makefile

+ 1
- 1
Makefile View File

118
 
118
 
119
 strip:
119
 strip:
120
 	$(Q)echo "  STRIP	$(PROGS)"
120
 	$(Q)echo "  STRIP	$(PROGS)"
121
-	$(Q)$(STRIP) $(PROGS)
121
+	$(Q)$(CROSS)$(STRIP) $(PROGS)
122
 
122
 
123
 clean:
123
 clean:
124
 	$(Q)echo "  RM	$(CLEAN_OBJS)"
124
 	$(Q)echo "  RM	$(CLEAN_OBJS)"

Loading…
Cancel
Save