* Makefile.am: Allow STRIP to be empty when creating windowszip.

This commit is contained in:
Vladimir Serbinenko 2013-11-19 23:48:46 +01:00
parent 55e706c918
commit 7f20dbbcd2
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-11-19 Vladimir Serbinenko <phcoder@gmail.com>
* Makefile.am: Allow STRIP to be empty when creating windowszip.
2013-11-19 Axel Kellermann <axel.kellermann@gmx.de>
* util/grub.d/30_os-prober.in: Add GRUB_OS_PROBER_SKIP_LIST to

View file

@ -410,7 +410,8 @@ windowsdir: $(PROGRAMS) $(starfield_DATA) $(platform_DATA)
test -d $(windowsdir)/themes || mkdir $(windowsdir)/themes
test -d $(windowsdir)/themes/starfield || mkdir $(windowsdir)/themes/starfield
for x in $(PROGRAMS); do \
$(STRIP) $$x -o $(windowsdir)/$$x; \
if [ x$(STRIP) != x ]; then $(STRIP) $$x -o $(windowsdir)/$$x; \
else cp -fp $$x $(windowsdir)/$$x; fi; \
done
for x in $(pkgdata_DATA); do \
cp -fp $$x $(windowsdir)/$$x; \