Purification in preparation for pure-darwin merge (shouldsn't hurt anything in the meantime)

+6
+6
pkgs/applications/editors/emacs-24/builder.sh
··· 5 5 # *our* versions, not the ones found in the system, as it would do by default. 6 6 # On other platforms, this appears to be unnecessary. 7 7 preConfigure() { 8 + for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do 9 + substituteInPlace $i --replace /bin/pwd pwd 10 + done 11 + 8 12 case "${system}" in 9 13 x86_64-linux) glibclibdir=lib64 ;; 10 14 i686-linux) glibclibdir=lib ;; ··· 23 27 --replace /usr/lib/crti.o $libc/${glibclibdir}/crti.o \ 24 28 --replace /usr/lib/crtn.o $libc/${glibclibdir}/crtn.o 25 29 done 30 + } 26 31 32 + preInstall () { 27 33 for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do 28 34 substituteInPlace $i --replace /bin/pwd pwd 29 35 done