diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-19 16:05:10 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-19 16:05:10 -0700 |
commit | b856ef852ff7a4ae54a7742516ed68f9535cb607 (patch) | |
tree | 85b1f98f7449347364d090363681c58fd4399fcb /images | |
parent | 1165cf71a86238d396a0615984b9d63d49ffbb1e (diff) | |
download | uhd-b856ef852ff7a4ae54a7742516ed68f9535cb607.tar.gz uhd-b856ef852ff7a4ae54a7742516ed68f9535cb607.tar.bz2 uhd-b856ef852ff7a4ae54a7742516ed68f9535cb607.zip |
uhd: images build script chmod recursive, files only
Diffstat (limited to 'images')
-rw-r--r-- | images/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/Makefile b/images/Makefile index c24f5e6c7..e1e533b12 100644 --- a/images/Makefile +++ b/images/Makefile @@ -258,7 +258,7 @@ endif # Build rules ######################################################################## images: $(IMAGES_LIST) - chmod -x $(BUILT_IMAGES_DIR)/* + find $(BUILT_IMAGES_DIR) -type f | xargs chmod -x clean: $(RM) -rf $(BUILT_IMAGES_DIR) |