summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * configure: Only mkdir non-existent directories.P. J. McDermott2013-05-051-1/+1
| |
| * configure: Only edit top-level makefile.P. J. McDermott2013-05-051-5/+5
|/
* oh-installfiles: In mkdir cmd, rm / and 1+ chars.P. J. McDermott2013-04-281-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
* Store absolute path in _OH_BUILDSYSTEM_SOURCE_DIR.P. J. McDermott2013-04-281-1/+2
| | | | | | _oh_autoconf_configure() changes the current directory to ${_OH_BUILDSYSTEM_BUILD_DIR}, making the call to configure fail if a relative path is given in oh-autoconfigure's -s option.
* oh_set_buildsystem_option(): Fix parameter name.P. J. McDermott2013-04-281-1/+1
|
* oh-installfiles: Don't skip symbolic links.P. J. McDermott2013-04-281-1/+1
|
* Release opkhelper 3.0.0-beta1.opkhelper-3.0.0-beta1P. J. McDermott2012-11-162-1/+20
|
* Add a "dist-xz" makefile target.P. J. McDermott2012-11-161-0/+4
|
* Also set install_root and INSTALL_ROOT with make.P. J. McDermott2012-11-161-1/+15
|
* Set CONFIG_PREFIX when installing with kbuild.P. J. McDermott2012-11-161-1/+2
|
* Move user-set target check to common function.P. J. McDermott2012-11-161-16/+9
|
* Remove unneeded ob_parse_package_metadata() call.P. J. McDermott2012-11-151-5/+0
|
* Fix a return command.P. J. McDermott2012-11-151-1/+1
|
* Document oh-architecture.P. J. McDermott2012-11-152-1/+57
|
* Add -s and -B options to oh-architecture.P. J. McDermott2012-11-151-2/+8
|
* Update synopsis of oh-autoconfigure(1).P. J. McDermott2012-11-151-0/+2
|
* configure: Don't exit on unrecognized options.P. J. McDermott2012-11-141-2/+3
|
* Set mode of mkarchtab.P. J. McDermott2012-11-141-0/+1
|
* Update TODO.P. J. McDermott2012-11-141-2/+0
|
* Change kbuild archtab entries.P. J. McDermott2012-11-141-3/+3
|
* Implement a "kbuild" build system plugin.P. J. McDermott2012-11-142-1/+117
|
* Support -s in oh-auto{build,clean,install}.P. J. McDermott2012-11-146-3/+36
|
* Document the -s option of oh-autoconfigure.P. J. McDermott2012-11-141-0/+8
|
* Fix getopts operand in oh-autoconfigure.P. J. McDermott2012-11-141-1/+1
|
* Pass the test arch to oh_buildsystem_do().P. J. McDermott2012-11-141-1/+2
|
* Return make's exit status.P. J. McDermott2012-11-131-2/+4
|
* Make the source directory configurable.P. J. McDermott2012-11-132-1/+8
|
* Return exit status of oh_buildsystem_do().P. J. McDermott2012-11-125-5/+5
|
* Update synopsis of oh-autobuild(1).P. J. McDermott2012-11-121-0/+2
|
* Make oh-autoinstall support the -T option.P. J. McDermott2012-11-123-3/+18
|
* Make the DESTDIR an absolute path.P. J. McDermott2012-11-101-1/+2
|
* Fix quotes in GNU system types.P. J. McDermott2012-11-091-5/+5
|
* Implement oh-architecture.P. J. McDermott2012-11-082-1/+50
|
* Split oh_buildsystem_do() & oh_buildsystem_find().P. J. McDermott2012-11-087-20/+61
|
* Try to detect a suitable build system host arch.P. J. McDermott2012-11-083-11/+23
|
* Optionally use multiarch lib paths in packages.P. J. McDermott2012-11-083-4/+19
|
* Fix missing "\" in _oh_autoconf_configure().P. J. McDermott2012-11-081-1/+1
|
* _oh_autoconf_configure: Return configure's status.P. J. McDermott2012-11-081-2/+3
|
* Fix search directory in _oh_make_can_build().P. J. McDermott2012-11-081-2/+2
|
* Lightly refactor oh_buildsystem_do(), add warning.P. J. McDermott2012-11-082-9/+9
|
* Fix getopts operand in oh-autoconfigure.P. J. McDermott2012-11-081-1/+1
|
* Support a build target option in oh-autobuild.P. J. McDermott2012-11-084-2/+17
|
* Use lowercase "t" for target arch option.P. J. McDermott2012-11-072-2/+2
|
* Merge branch 'feature/build-sys-arches'.P. J. McDermott2012-11-079-13/+146
|\
| * Improve the archtab generation kludge.P. J. McDermott2012-11-074-169/+85
| |
| * Document the new -T option of oh-autoconfigure(1).P. J. McDermott2012-11-061-0/+4
| |
| * Support a -T option for a cross build target.P. J. McDermott2012-11-063-0/+11
| |
| * Get Autoconf arches from archtab, not environment.P. J. McDermott2012-11-061-3/+15
| |
| * Implement oh_buildsystem_arch().P. J. McDermott2012-11-061-0/+15
| |
| * Add the archtab as dependency in the build system.P. J. McDermott2012-11-063-2/+8
| |