diff options
author | minskim <minskim@pkgsrc.org> | 2011-03-01 17:57:16 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2011-03-01 17:57:16 +0000 |
commit | a09b5498932d2a607669a3d42f38ca68859bfad6 (patch) | |
tree | 2e9a5fb5c6cc5f8533eaffb4b2050b0043799534 /editors | |
parent | 7a0cd0da50d52ade6600322a06e951092149b35f (diff) | |
download | pkgsrc-a09b5498932d2a607669a3d42f38ca68859bfad6.tar.gz |
Add a patch for "==" in a shell script.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs-snapshot/distinfo | 4 | ||||
-rw-r--r-- | editors/emacs-snapshot/patches/patch-ae | 16 |
2 files changed, 18 insertions, 2 deletions
diff --git a/editors/emacs-snapshot/distinfo b/editors/emacs-snapshot/distinfo index 9c7d95a0eba..39f3ab9216d 100644 --- a/editors/emacs-snapshot/distinfo +++ b/editors/emacs-snapshot/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.27 2011/03/01 04:12:45 minskim Exp $ +$NetBSD: distinfo,v 1.28 2011/03/01 17:57:16 minskim Exp $ SHA1 (emacs-snapshot_20110224.orig.tar.xz) = 252c326bca5cc4d34d52b97ed55cfcbd112cc433 RMD160 (emacs-snapshot_20110224.orig.tar.xz) = 08bdf944aae915e428d3562c03e78e76e564758a @@ -7,5 +7,5 @@ SHA1 (patch-aa) = 052ea84f7e3b35d1aba08bd641d7250ec07d09aa SHA1 (patch-ab) = 51614c9337f77e39dab410faf78b95d8b9b6e381 SHA1 (patch-ac) = cbc72f45d6648b3ab7f76af8d5a2156fd154b16a SHA1 (patch-ad) = b8faf958f7ab3effd6c8dbcbf51fe70ddb2ecdae -SHA1 (patch-ae) = 7c9d5dd240590446d82dfd35858c29f4387f87ed +SHA1 (patch-ae) = 2dfe31015550feeaa47955136d3bbe2aa6790095 SHA1 (patch-ag) = 2fc1d3fd953e595eb0ed1f3f5289a70a754e1aed diff --git a/editors/emacs-snapshot/patches/patch-ae b/editors/emacs-snapshot/patches/patch-ae new file mode 100644 index 00000000000..e438b8c9f67 --- /dev/null +++ b/editors/emacs-snapshot/patches/patch-ae @@ -0,0 +1,16 @@ +$NetBSD: patch-ae,v 1.1 2011/03/01 17:57:16 minskim Exp $ + +The "test" command, as well as the "[" command, are not required to know +the "==" operator. + +--- test/indent/shell.sh.orig 2011-02-24 08:45:25.000000000 +0000 ++++ test/indent/shell.sh +@@ -70,7 +70,7 @@ help2 + EOF2 + } + bar () { +- if [ $# == 0 ]; then ++ if [ $# = 0 ]; then + while + f # KNOWN INDENT BUG + do |