diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-09 11:34:11 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-09 11:34:11 +0000 |
commit | e9cb98273d9e73b87ea47bf3d68c2889bbda844f (patch) | |
tree | 2211998163e039356b1bde6a59c593fc86511932 /target | |
parent | e6b271fbb0c0b4b0d3e89e3e4f86e8c1287e9fcb (diff) |
target/Makefile.in: make 3.80 compatibility fix
Patch by Andreas Schweigstill <aschweig@schweigstill.de>
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/Makefile.in b/target/Makefile.in index 0831c8f03..b1450413e 100644 --- a/target/Makefile.in +++ b/target/Makefile.in @@ -19,7 +19,8 @@ define COPY_FILE fi endef COPYTO=$(strip $(subst ",,$(BUILDROOT_COPYTO))) -else ifneq ($(strip $(subst ",,$(BR2_COPYTO))),) # Global override +else +ifneq ($(strip $(subst ",,$(BR2_COPYTO))),) # Global override #")) define COPY_FILE @echo "BR2_COPYTO: Copy to $(BR2_COPYTO)/$(strip $(3))" ; \ @@ -52,6 +53,7 @@ define COPY_FILE endef #")) endif +endif # make sure to put everything that is board-specific before the tarroot targets include target/generic/Makefile.in |