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

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