Browse Source

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

Matthias Schiffer 8 years ago
parent
commit
33d028783f
2 changed files with 0 additions and 16 deletions
  1. 0 6
      Makefile
  2. 0 10
      scripts/unpatch.sh

+ 0 - 6
Makefile

@@ -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

+ 0 - 10
scripts/unpatch.sh

@@ -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