shithub: mc

Download patch

ref: acfaafa6f2373eab08227ed02a0e86d196fad384
parent: f1ea96e3b500fdd088c8c89889d5daec2cbcb3dc
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jun 28 14:15:23 EDT 2015

Fix bootstrap script generation.

    Remove absolute paths, add a comment marking the script
    as autogenerated.

--- a/genbootstrap.sh
+++ b/genbootstrap.sh
@@ -17,6 +17,8 @@
 # shell script.
 bootscript=mk/bootstrap/bootstrap+`uname -s`-`uname -m`.sh
 echo '#!/bin/sh' > $bootscript
+echo '# This script is generated by genbootstrap.sh' >> $bootscript
+echo '# to regenerate, run "make bootstrap"' >> $bootscript
 echo 'pwd=`pwd`' >> $bootscript
 echo 'export PATH=`pwd`:`pwd`/6:`pwd`/muse:$PATH' >> $bootscript
 ./xmbld -Rnone | \