aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-05-23Bump version to 1.5.0bump-1.5.0sanmiguel
Merge this last for Milestone 1.5.0, then tag and release
2017-05-23Merge pull request #201 from kerl/force-moveMark Allen
Add a force flag for some mv
2017-05-23Merge pull request #198 from kerl/gh197Mark Allen
Apply makeop patch for perls >= 5.22
2017-05-23Merge pull request #200 from vladdu/patch-1Mark Allen
fix bad usage of 'read' command
2017-05-05Add a -f flag for balky mvforce-moveMark Allen
Some Linuxes get cranky when you try to move files on top of an existing directory. So we add the -f flag to say it's ok to overwrite that old stuff.
2017-04-13fix bad usage of 'read' commandVlad Dumitrescu
2017-03-30Apply makeop patch for perls >= 5.22gh197Mark Allen
2017-02-22Roll 1.4.21.4.2Mark Allen
2017-02-22Merge pull request #191 from kerl/bugfix2sanmiguel
Use string not-equal instead of integer not-equal
2017-02-21Use string not-equal instead of integer not-equalbugfix2Mark Allen
2017-02-20Merge pull request #183 from kerl/enable-travis-ciMark Allen
Enable travis-CI, add 'kerl path' subcommand
2017-02-20Revert the printf/echo changesanmiguel
2017-02-19Bump timeout to 45enable-travis-cisanmiguel
Some erlang builds were taking longer than 30 to complete
2017-02-18Disable R15B03-1 for now - it errors on MacOS on Travis for some TBD reasonsanmiguel
2017-02-18Re-add wx - maybe that's the cause of failure?sanmiguel
2017-02-18:space_invader: cc @fenollpsanmiguel
2017-02-18Disable wx; enable more erlang versionssanmiguel
2017-02-18Try to activate an erlang, test that crypto works and deactivate itsanmiguel
2017-02-18Use ./kerl not kerlsanmiguel
2017-02-18Use new 'kerl path foo' command to figure out install to deletesanmiguel
2017-02-18Merge branch 'get_active_path-cli' into enable-travis-cisanmiguel
2017-02-18Extend bash completion for 'kerl path'get_active_path-clisanmiguel
2017-02-18Add kerl path to zsh completionssanmiguel
2017-02-18Flesh out 'kerl path'sanmiguel
2017-02-17First pass at some of 'kerl path'sanmiguel
WIP, lots TODO
2017-02-16Add 'kerl path' subcommandsanmiguel
Re #185 - [x] add `path` subcommad
2017-02-12Better way to get path to installationsanmiguel
2017-02-12Fix path to install dir when removing installationsanmiguel
This is a bit nasty, and could be improved by #185
2017-02-12it's 'delete installation' not 'delete install'...sanmiguel
2017-02-12Add more build steps to clean envsanmiguel
2017-02-12Tweak install namesanmiguel
Cut back on erlang versions in matrix while testing
2017-02-12Extend time given for build to 20minssanmiguel
https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received
2017-02-12Add 18.3 to erlang versions to testsanmiguel
2017-02-12Add .travis.yml first draftsanmiguel
2017-02-12Roll 1.4.11.4.1Mark Allen
2017-02-12Merge pull request #181 from kerl/fix-build_pltMark Allen
Attempt a more accurate way to get apps for dialyzer PLT building
2017-02-12Merge pull request #180 from kerl/mtc-fix-read-kerl-config-storage-filenameMark Allen
Fix syntax for fetching old sum
2017-02-11Attempt a more accurate way to get apps for dialyzer PLT buildingfix-build_pltsanmiguel
2017-02-05Fix syntax for fetching old summtc-fix-read-kerl-config-storage-filenamesanmiguel
2017-02-05Roll 1.4.01.4.0Mark Allen
2017-02-05Merge pull request #176 from kerl/gh170Mark Allen
Assert perl exists before builds (#170)
2017-02-05Merge pull request #178 from kerl/improve-readmeMark Allen
Improve readme
2017-02-05Merge pull request #179 from kerl/mtc-env-var-fixesMark Allen
Fix handling of KERL_INSTALL_HTMLDOCS and KERL_PROMPT
2017-02-05Fix handling of KERL_INSTALL_HTMLDOCS and KERL_PROMPTsanmiguel
We had no handling for KERL_INSTALL_HTMLDOCS being set in the shell properly, as KERL_INSTALL_MANPAGES is handled There was a typo in the use of KERL_PROMPT in CSH activate scripts
2017-02-05Don't bother splitting long lines - it's not worth the noisesanmiguel
2017-02-05Modernise and improve READMEsanmiguel
We were missing docs on some of the variables available for configuration Update example usage and sample output to more modern examples Add a section about using OTP_GITHUB_URL
2017-02-05Merge pull request #177 from kerl/configsanmiguel
Store build configuration in a file
2017-02-05Add basic build option printoutMark Allen
2017-02-02Store build configuration in a fileconfigMark Allen
This change implements storing the build configuration in a file which can later be compared to a potentially new configuration which might trigger the need to re-run the OTP configuration steps. We also copy the build configuration into the installation directory so that at some future time we can write or enhance a command which shows the build configuration. Addresses #162 #158
2017-02-02Assert perl exists before builds (#170)gh170Mark Allen
Perl 5 is required to compile Erlang from source. It's used (among other things) to assemble BEAM opcodes, NIF jump tables and more. We now assert perl exists on the PATH before we proceed to build Erlang or test for Perl's version string. We also now test for Java before we try to find its version. Java is not required to compile Erlang though, so we don't output any warnings or errors if its not found.