* Makefile.am: Allow STRIP to be empty when creating windowszip.
This commit is contained in:
parent
55e706c918
commit
7f20dbbcd2
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2013-11-19 Axel Kellermann <axel.kellermann@gmx.de>
|
||||||
|
|
||||||
* util/grub.d/30_os-prober.in: Add GRUB_OS_PROBER_SKIP_LIST to
|
* util/grub.d/30_os-prober.in: Add GRUB_OS_PROBER_SKIP_LIST to
|
||||||
|
|
|
@ -410,7 +410,8 @@ windowsdir: $(PROGRAMS) $(starfield_DATA) $(platform_DATA)
|
||||||
test -d $(windowsdir)/themes || mkdir $(windowsdir)/themes
|
test -d $(windowsdir)/themes || mkdir $(windowsdir)/themes
|
||||||
test -d $(windowsdir)/themes/starfield || mkdir $(windowsdir)/themes/starfield
|
test -d $(windowsdir)/themes/starfield || mkdir $(windowsdir)/themes/starfield
|
||||||
for x in $(PROGRAMS); do \
|
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
|
done
|
||||||
for x in $(pkgdata_DATA); do \
|
for x in $(pkgdata_DATA); do \
|
||||||
cp -fp $$x $(windowsdir)/$$x; \
|
cp -fp $$x $(windowsdir)/$$x; \
|
||||||
|
|
Loading…
Reference in a new issue