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 a26f781404
commit 33d028783f
2 changed files with 0 additions and 16 deletions

View File

@ -26,12 +26,6 @@ update: FORCE
$(GLUONDIR)/scripts/update.sh
$(GLUONDIR)/scripts/patch.sh
patch: FORCE
$(GLUONDIR)/scripts/patch.sh
unpatch: FORCE
$(GLUONDIR)/scripts/unpatch.sh
update-patches: FORCE
$(GLUONDIR)/scripts/update.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