Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | oh-shlibdeps: Arch-qualify just-built packages | Patrick McDermott | 2020-12-21 | 1 | -1/+5 |
| | |||||
* | oh-shlibdeps: Don't clobber substvars | Patrick McDermott | 2020-11-08 | 1 | -1/+1 |
| | |||||
* | oh-shlibdeps: Hardcode lib dirs, drop ldconfig | Patrick McDermott | 2020-06-18 | 1 | -2/+5 |
| | |||||
* | oh-shlibdeps: Fix missing newline in substvars | Patrick McDermott | 2019-04-02 | 1 | -0/+1 |
| | |||||
* | oh-shlibdeps: Fix library search path field splitting | Patrick McDermott | 2019-03-22 | 1 | -6/+0 |
| | |||||
* | oh-shlibdeps: Search RTLD paths with ldconfig | Patrick McDermott | 2019-03-22 | 1 | -3/+6 |
| | |||||
* | oh-shlibdeps: Use readelf instead of ldd | P. J. McDermott | 2019-03-22 | 1 | -10/+49 |
| | |||||
* | oh-shlibdeps: New utility | P. J. McDermott | 2019-03-22 | 2 | -0/+80 |
| | |||||
* | */local.mk */*/local.mk: Remove copyright notices. | P. J. McDermott | 2014-03-06 | 1 | -18/+0 |
| | | | | These contain just lists of files and shouldn't be copyrightable. | ||||
* | src/*.sh: Add an extra space in copyirhgt notices. | P. J. McDermott | 2014-03-06 | 9 | -9/+9 |
| | |||||
* | src/*.sh: Wrap long lines. | P. J. McDermott | 2014-03-06 | 9 | -29/+52 |
| | |||||
* | Add missing ".sh" to file headers. | P. J. McDermott | 2014-03-01 | 9 | -9/+9 |
| | | | | | All source files were renamed two years ago in e206c66, but the headers were never updated. | ||||
* | Use new build system macros in source files. | P. J. McDermott | 2014-02-28 | 9 | -18/+18 |
| | |||||
* | Switch to using GNU Autoconf and Automake. | P. J. McDermott | 2014-02-27 | 1 | -1/+1 |
| | |||||
* | oh_buildsystem_arch(): Require second argument. | P. J. McDermott | 2014-02-26 | 1 | -1/+1 |
| | |||||
* | oh-installfiles: s/files_ifs/CR/. | P. J. McDermott | 2014-02-26 | 1 | -2/+2 |
| | |||||
* | oh-strip: Fix scope and case of keep_debug var. | P. J. McDermott | 2014-02-26 | 1 | -4/+4 |
| | |||||
* | src/oh-strip.sh: Use new locale functions. | P. J. McDermott | 2014-02-25 | 1 | -4/+4 |
| | |||||
* | src/oh-installfiles.sh: Use new locale functions. | P. J. McDermott | 2014-02-25 | 1 | -3/+3 |
| | |||||
* | src/oh-fixperms.sh: Use new locale functions. | P. J. McDermott | 2014-02-25 | 1 | -6/+6 |
| | |||||
* | src/oh-auto*.sh: Use new locale functions. | P. J. McDermott | 2014-02-25 | 5 | -5/+5 |
| | |||||
* | src/oh-architecture.sh: Use new locale functions. | P. J. McDermott | 2014-02-25 | 1 | -1/+1 |
| | |||||
* | src/oh-strip.sh: Use new output functions. | P. J. McDermott | 2014-02-24 | 1 | -4/+4 |
| | |||||
* | src/oh-installfiles.sh: Use new output functions. | P. J. McDermott | 2014-02-24 | 1 | -3/+3 |
| | |||||
* | src/oh-fixperms.sh: Use new output functions. | P. J. McDermott | 2014-02-24 | 1 | -6/+6 |
| | |||||
* | src/oh-auto*.sh: Use new output functions. | P. J. McDermott | 2014-02-24 | 5 | -5/+5 |
| | |||||
* | src/oh-architecture.sh: Use new output functions. | P. J. McDermott | 2014-02-24 | 1 | -1/+1 |
| | |||||
* | s/@@LIBOPKHELPER@@/@@PKGLIBDIR@@/ in sources. | P. J. McDermott | 2013-05-09 | 9 | -9/+9 |
| | |||||
* | src/local.mk: Fix macro name. | P. J. McDermott | 2013-05-09 | 1 | -1/+1 |
| | |||||
* | Move code from src/local.mk to Makefile.in. | P. J. McDermott | 2013-05-08 | 1 | -17/+0 |
| | |||||
* | Note deprecation of libopkhelper variable. | P. J. McDermott | 2013-05-06 | 1 | -0/+1 |
| | |||||
* | Change lib macros and targets to pkglib ones. | P. J. McDermott | 2013-05-05 | 1 | -1/+2 |
| | |||||
* | Make src/ non-recursive. | P. J. McDermott | 2013-05-05 | 2 | -85/+43 |
| | |||||
* | oh-installfiles: In mkdir cmd, rm / and 1+ chars. | P. J. McDermott | 2013-04-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, a pattern like `/usr/include/` in <binpkg>.pkg/files would cause oh-installfiles to run `mkdir -p <binpkg>.data//usr/include` and install headers in `<binpkg>.data/usr/include/include/`. Before: $ pkg=foo $ file=/usr/include $ echo mkdir -p "${pkg}.data/${file%/*}" mkdir -p foo.data//usr $ file=/usr/include/ $ echo mkdir -p "${pkg}.data/${file%/*}" mkdir -p foo.data//usr/include After: $ pkg=foo $ file=/usr/include $ echo mkdir -p "${pkg}.data/${file%/?*}" mkdir -p foo.data//usr $ file=/usr/include/ $ echo mkdir -p "${pkg}.data/${file%/?*}" mkdir -p foo.data//usr | ||||
* | oh-installfiles: Don't skip symbolic links. | P. J. McDermott | 2013-04-28 | 1 | -1/+1 |
| | |||||
* | Remove unneeded ob_parse_package_metadata() call. | P. J. McDermott | 2012-11-15 | 1 | -5/+0 |
| | |||||
* | Add -s and -B options to oh-architecture. | P. J. McDermott | 2012-11-15 | 1 | -2/+8 |
| | |||||
* | Support -s in oh-auto{build,clean,install}. | P. J. McDermott | 2012-11-14 | 3 | -3/+12 |
| | |||||
* | Fix getopts operand in oh-autoconfigure. | P. J. McDermott | 2012-11-14 | 1 | -1/+1 |
| | |||||
* | Make the source directory configurable. | P. J. McDermott | 2012-11-13 | 1 | -0/+3 |
| | |||||
* | Return exit status of oh_buildsystem_do(). | P. J. McDermott | 2012-11-12 | 5 | -5/+5 |
| | |||||
* | Make oh-autoinstall support the -T option. | P. J. McDermott | 2012-11-12 | 1 | -1/+4 |
| | |||||
* | Implement oh-architecture. | P. J. McDermott | 2012-11-08 | 2 | -1/+50 |
| | |||||
* | Split oh_buildsystem_do() & oh_buildsystem_find(). | P. J. McDermott | 2012-11-08 | 5 | -5/+15 |
| | |||||
* | Fix getopts operand in oh-autoconfigure. | P. J. McDermott | 2012-11-08 | 1 | -1/+1 |
| | |||||
* | Support a build target option in oh-autobuild. | P. J. McDermott | 2012-11-08 | 1 | -1/+4 |
| | |||||
* | Use lowercase "t" for target arch option. | P. J. McDermott | 2012-11-07 | 1 | -1/+1 |
| | |||||
* | Support a -T option for a cross build target. | P. J. McDermott | 2012-11-06 | 1 | -0/+3 |
| | |||||
* | Warn if some files aren't installed into packages. | P. J. McDermott | 2012-10-23 | 1 | -0/+5 |
| | |||||
* | Write oh-autoclean and oh-autotest. | P. J. McDermott | 2012-10-22 | 3 | -0/+104 |
| |