Ignore:
Timestamp:
Oct 27, 2014, 3:05:30 PM (9 years ago)
Author:
cfuguet
Message:

tsar_boot: fixing minor bug in the Makefile

  • when redirecting stderr and stdout to a file the bash syntax &> is not sh compatible. Replacing it by "> file 2>&1"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/tsar_boot/Makefile

    r801 r866  
    127127$(BUILD_DIR)/platform.dtb: $(HARD_CONFIG_PATH)/$(DTS)
    128128        $(ECHO) "[   DTC   ]     $(notdir $<)"
    129         ${DTC} -O dtb -o $@ $< &> /dev/null
     129        $(DTC) -O dtb -o $@ $< > /dev/null 2>&1
    130130
    131131$(BUILD_DIR)/platform.ld: $(BUILD_DIR)/platform.dtb
Note: See TracChangeset for help on using the changeset viewer.