build: remove rather useless "patch" and "unpatch" make targets

This commit is contained in:
Matthias Schiffer 2016-03-25 23:57:15 +01:00
parent 1c5f92e3b9
commit 6a7363d9c5
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
2 changed files with 0 additions and 16 deletions

View File

@ -29,12 +29,6 @@ update: FORCE
$(GLUONDIR)/scripts/update.sh $(GLUONDIR)/scripts/update.sh
$(GLUONDIR)/scripts/patch.sh $(GLUONDIR)/scripts/patch.sh
patch: FORCE
$(GLUONDIR)/scripts/patch.sh
unpatch: FORCE
$(GLUONDIR)/scripts/unpatch.sh
update-patches: FORCE update-patches: FORCE
$(GLUONDIR)/scripts/update.sh $(GLUONDIR)/scripts/update.sh
$(GLUONDIR)/scripts/update-patches.sh $(GLUONDIR)/scripts/update-patches.sh

View File

@ -1,10 +0,0 @@
#!/bin/bash
set -e
. "$GLUONDIR"/scripts/modules.sh
for module in $GLUON_MODULES; do
cd "$GLUONDIR"/$module
git checkout base
done