summaryrefslogtreecommitdiff
path: root/pkg/awk/src
AgeCommit message (Collapse)Author
2019-03-03awk: Update to latest gitMichael Forney
2018-10-23Revert accidentally updated submodule in 6673d9ab52Michael Forney
I missed one in the last commit.
2018-10-18curl: Probe for size of size_t, time_t and longMichael Forney
There are still several more SIZEOF_* constants in curl_config.h, but they seem to match for architectures we care about.
2018-08-27awk: Update to latest gitMichael Forney
2018-03-16Revert accidentally updated submodules in ↵Michael Forney
b99ef6bfc544b340d6ea0d07b82f764539cc62e9 `git commit -a` with ignored submodules strikes again. I really should report a bug about this.
2018-03-10libdrm: Check if config.video_drivers is setMichael Forney
2016-12-13Move to flat package hierarchyMichael Forney
Note to self: never try to move submodules again To migrate your existing submodules (more or less): set -x set -e mkdir .git/modules/pkg for old in */*/src ; do new="pkg/${old#*/}" if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then continue fi git -C ".git/modules/$old" config core.worktree "../../../../../$new" rmdir "$new" mv "$old" "$new" sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp" mv "$new/.git.tmp" "$new/.git" mkdir ".git/modules/${new%/src}" mv ".git/modules/$old" ".git/modules/$new" rm "${old%/src}"/*.ninja mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/" rmdir "${old%/src}" || true done sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp mv .git/config.tmp .git/config