mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Merge pull request #1514 from mdlemay/newlib-filter-patches
galileo: build_newlib.sh: Only apply patch files with the extension ".patch"
This commit is contained in:
commit
da5044acb2
@ -38,7 +38,7 @@ prepare() {
|
||||
tar xf ${TARBALL}
|
||||
cd ${SRC_DIR}
|
||||
|
||||
for i in `ls ${PATCH_DIR}`; do patch -p0 < ${PATCH_DIR}/${i}; done
|
||||
for i in `ls ${PATCH_DIR}/*.patch`; do patch -p0 < ${i}; done
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user