fix build on windows
This commit is contained in:
parent
3584d2093a
commit
5e13111ef0
4
Makefile
4
Makefile
|
@ -68,7 +68,11 @@ endif
|
|||
|
||||
.PHONY: all clean install uninstall builddir
|
||||
|
||||
ifeq ($(PLATFORM),posix)
|
||||
all: $(BIN) $(BUILDDIR)/$(MANPAGE)
|
||||
else
|
||||
all: $(BIN)
|
||||
endif
|
||||
|
||||
builddir: $(BUILDDIR)
|
||||
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
pkg=mediaextract-`git describe --tags`
|
||||
|
||||
rm -r $pkg $pkg.zip
|
||||
rm -r $pkg $pkg.zip 2>/dev/null || echo
|
||||
git clone . $pkg/source
|
||||
rm -rf $pkg/source/.git $pkg/source/.gitignore
|
||||
mv $pkg/source/README.md $pkg
|
||||
|
|
Loading…
Reference in New Issue