Переглянути джерело

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

Matthias Schiffer 8 роки тому
батько
коміт
6a7363d9c5
2 змінених файлів з 0 додано та 16 видалено
  1. 0 6
      Makefile
  2. 0 10
      scripts/unpatch.sh

+ 0 - 6
Makefile

@@ -29,12 +29,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