tbuild: rename " and "" to quote1 and quote2 for hg - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit fbe3f344c14d002316338a38d35f7227e94f2844
 (DIR) parent 50ababbd552abfa8ef3b16ccdaea54b58f5c031c
 (HTM) Author: Russ Cox <rsc@swtch.com>
       Date:   Tue,  3 Jun 2014 14:29:06 -0400
       
       build: rename " and "" to quote1 and quote2 for hg
       
       They'll be copied back during installation
       but then hg doesn't have to create those files
       on systems that have trouble with them.
       
       TBR=rsc
       https://codereview.appspot.com/105800043
       
       Diffstat:
         M INSTALL                             |       4 ++++
         R bin/" -> bin/quote1                 |       0 
         R bin/"" -> bin/quote2                |       0 
       
       3 files changed, 4 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/INSTALL b/INSTALL
       t@@ -170,6 +170,10 @@ if $dobuild; then
                        echo " "
                        echo "* Warning: not all binaries built successfully."
                fi
       +        if [ -f bin/quote1 ]; then
       +                cp bin/quote1 'bin/"'
       +                cp bin/quote2 'bin/""'
       +        fi
                echo "* Cleaning up..."
                mk clean
        fi
 (DIR) diff --git a/bin/" b/bin/quote1
 (DIR) diff --git a/bin/"" b/bin/quote2