diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/image.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/image.mk b/mk/image.mk index 50c5d8b95..1b92da0df 100644 --- a/mk/image.mk +++ b/mk/image.mk @@ -6,8 +6,8 @@ imageprepare: kernel-install image-prepare-post extra-install # if an extra directory exist in TOPDIR, copy all content over the # root directory, do the same if make extra=/dir/to/extra is used extra-install: - if [ -d $(TOPDIR)/extra ];then $(CP) $(TOPDIR)/extra/* ${TARGET_DIR};fi - if [ ! -z $(extra) ];then $(CP) $(extra)/* ${TARGET_DIR};fi + @if [ -d $(TOPDIR)/extra ];then $(CP) $(TOPDIR)/extra/* ${TARGET_DIR};fi + @if [ ! -z $(extra) ];then $(CP) $(extra)/* ${TARGET_DIR};fi image-prepare-post: rng=/dev/arandom; test -e $$rng || rng=/dev/urandom; \ |