diff options
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index c8281e90a9..18826bb356 100644 --- a/Makefile.target +++ b/Makefile.target @@ -329,7 +329,10 @@ clean: install: all ifneq ($(PROGS),) - $(INSTALL) -m 755 $(STRIP_OPT) $(PROGS) "$(DESTDIR)$(bindir)" + $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" +ifneq ($(STRIP),) + $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS)) +endif endif # Include automatically generated dependency files |