# HG changeset patch # User Michael Spacefalcon # Date 1402426101 0 # Node ID 90af6744d25662a97cd738cb80a48431840fe8ba # Parent 1cb7b2b6ce18c49ee77dcaac58a25608076e9f1c make install in target-utils: do mkdir -p before the install command diff -r 1cb7b2b6ce18 -r 90af6744d256 target-utils/compalstage/Makefile --- a/target-utils/compalstage/Makefile Tue Jun 10 09:23:07 2014 +0000 +++ b/target-utils/compalstage/Makefile Tue Jun 10 18:48:21 2014 +0000 @@ -21,6 +21,7 @@ ${CC} -DTHUMB_ENTRY -c -o $@ $< install: + mkdir -p ${INSTDIR} install -c ${TARGETS} ${INSTDIR} clean: diff -r 1cb7b2b6ce18 -r 90af6744d256 target-utils/loadagent/Makefile --- a/target-utils/loadagent/Makefile Tue Jun 10 09:23:07 2014 +0000 +++ b/target-utils/loadagent/Makefile Tue Jun 10 18:48:21 2014 +0000 @@ -28,6 +28,7 @@ ${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@ install: + mkdir -p ${INSTDIR} install -c ${PROG}.srec ${INSTDIR} clean: