diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-01 22:16:31 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-01 22:16:31 +0200 |
commit | b44b3799ca9fa6c744fc079b96a9c062e4bdd077 (patch) | |
tree | aa99430763a369a00ab02bf3f4f454ebb2cc3e7c /scripts/update-patches | |
parent | d1a85ceca38c54caff040cd6e5a4b329a47893d7 (diff) |
remove unused $Id$
- $id$ substitution is not apropriate for git scm
Diffstat (limited to 'scripts/update-patches')
-rw-r--r-- | scripts/update-patches | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/update-patches b/scripts/update-patches index 4c695f0cc..2c3f57278 100644 --- a/scripts/update-patches +++ b/scripts/update-patches @@ -1,7 +1,4 @@ #!/usr/bin/env bash -# $Id: update-patches 24 2008-08-31 14:56:13Z wbx $ -# $MirOS: ports/infrastructure/scripts/update-patches,v 1.5 2006/06/15 19:18:43 tg Exp $ -#- # Copyright (c) 2006 # Thorsten Glaser <tg@freewrt.org> # @@ -157,9 +154,7 @@ for file in $(cd ${WRKDIST}; find . -type f | sed 's#^\./##'); do # Build a sensible name for the new patch file patchname=patch-$(echo "$file" | sed -e 's#[/. ]#_#g') echo "No patch-* found for $file, creating $patchname" >&2 - ( echo '$Id: update-patches 24 2008-08-31 14:56:13Z wbx $'; \ - cd $D_BASE && do_diff "$file" "$D_SUB.orig" "$D_SUB" \ - ) >$patchname + ( cd $D_BASE && do_diff "$file" "$D_SUB.orig" "$D_SUB" ) >$patchname edit="$edit $patchname" accounted="$accounted $patchname" done |