Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Makefile.in: Add deps to install-{exec,data}.feature/build-system-improvements | P. J. McDermott | 2013-05-09 | 1 | -2/+2 |
| | |||||
* | Makefile.in: Move common commands into macros. | P. J. McDermott | 2013-05-09 | 1 | -68/+37 |
| | |||||
* | Makefile.in: Add `set -e` to long commands. | P. J. McDermott | 2013-05-09 | 1 | -15/+15 |
| | |||||
* | Makefile.in: Update $(distdir) target. | P. J. McDermott | 2013-05-09 | 1 | -6/+4 |
| | |||||
* | Makefile.in: Rmdir pkg{,buildsystem}dir. | P. J. McDermott | 2013-05-09 | 1 | -1/+3 |
| | |||||
* | Makefile.in: Replace old sed cmds with basename. | P. J. McDermott | 2013-05-09 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The result is the same, and basename is a bit faster than sed is. A quick and dirty benchmark: printf 'printf and sed:\n' i=0 while [ ${i} -lt 3 ]; do time -p sh >/dev/null <<-EOF i=0 while [ \${i} -lt 1000 ]; do printf '%s' 'foo/bar' | sed 's|^.*/||' i=\$((\$i + 1)) done EOF i=$(($i + 1)) done printf '\nbasename:\n' i=0 while [ ${i} -lt 3 ]; do time -p sh >/dev/null <<-EOF i=0 while [ \${i} -lt 1000 ]; do basename 'foo/bar' i=\$((\$i + 1)) done EOF i=$(($i + 1)) done And the unsurprising results: printf and sed: real 1.17 user 0.02 sys 0.17 real 1.18 user 0.01 sys 0.18 real 1.17 user 0.02 sys 0.16 basename: real 0.74 user 0.02 sys 0.08 real 0.74 user 0.02 sys 0.08 real 0.72 user 0.04 sys 0.06 basename is about 37% – 38% faster. | ||||
* | Move code from locale/local.mk to Makefile.in. | P. J. McDermott | 2013-05-08 | 1 | -5/+10 |
| | |||||
* | Move code from man/local.mk to Makefile.in. | P. J. McDermott | 2013-05-08 | 1 | -3/+20 |
| | |||||
* | Makefile.in: Get true basenames in (un)installs. | P. J. McDermott | 2013-05-08 | 1 | -8/+8 |
| | |||||
* | Makefile.in: Remove unnecessary mkdir commands. | P. J. McDermott | 2013-05-08 | 1 | -6/+0 |
| | |||||
* | Add pkglibbuildsystem macros. | P. J. McDermott | 2013-05-08 | 1 | -4/+28 |
| | |||||
* | Move code from lib/local.mk to Makefile.in. | P. J. McDermott | 2013-05-08 | 1 | -3/+9 |
| | |||||
* | Move code from src/local.mk to Makefile.in. | P. J. McDermott | 2013-05-08 | 1 | -2/+18 |
| | |||||
* | Makefile.in: Add missing package_library var. | P. J. McDermott | 2013-05-06 | 1 | -0/+1 |
| | |||||
* | Makefile.in: Fix some errors. | P. J. McDermott | 2013-05-06 | 1 | -3/+1 |
| | |||||
* | Note deprecation of libopkhelper variable. | P. J. McDermott | 2013-05-06 | 1 | -0/+1 |
| | |||||
* | Makefile.in: Remove obsolete MACROS macro. | P. J. McDermott | 2013-05-05 | 1 | -12/+0 |
| | | | | Everything is non-recursive now. | ||||
* | Make locale/ non-recursive. | P. J. McDermott | 2013-05-05 | 1 | -12/+32 |
| | |||||
* | Makefile.in: Update distfiles. | P. J. McDermott | 2013-05-05 | 1 | -1/+3 |
| | |||||
* | Make man/ non-recursive. | P. J. McDermott | 2013-05-05 | 1 | -12/+32 |
| | |||||
* | Add man1dir variable to build system. | P. J. McDermott | 2013-05-05 | 1 | -0/+1 |
| | |||||
* | Change lib macros and targets to pkglib ones. | P. J. McDermott | 2013-05-05 | 1 | -17/+17 |
| | |||||
* | Add pkglibdir variable (to replace libopkhelper). | P. J. McDermott | 2013-05-05 | 1 | -2/+4 |
| | |||||
* | Make lib/buildsystem/ non-recursive. | P. J. McDermott | 2013-05-05 | 1 | -10/+8 |
| | |||||
* | Make lib/ non-recursive. | P. J. McDermott | 2013-05-05 | 1 | -10/+26 |
| | |||||
* | Make src/ non-recursive. | P. J. McDermott | 2013-05-05 | 1 | -16/+44 |
| | |||||
* | Add a "dist-xz" makefile target. | P. J. McDermott | 2012-11-16 | 1 | -0/+4 |
| | |||||
* | Add the archtab as dependency in the build system. | P. J. McDermott | 2012-11-06 | 1 | -1/+3 |
| | |||||
* | Fix path to lib/buildsystem distdir. | P. J. McDermott | 2012-10-22 | 1 | -1/+1 |
| | |||||
* | s/COPYING/COPYING.2 COPYING.3/ in distfiles macro. | P. J. McDermott | 2012-10-22 | 1 | -1/+2 |
| | |||||
* | Add lib{,/buildsystem} to configure & Makefile.in. | P. J. McDermott | 2012-10-22 | 1 | -0/+14 |
| | |||||
* | Add support for a libopkhelper to build system. | P. J. McDermott | 2012-10-21 | 1 | -0/+2 |
| | |||||
* | Additionally license everything under GPLv2. | P. J. McDermott | 2012-10-21 | 1 | -1/+1 |
| | |||||
* | Delete opkhelper library. | P. J. McDermott | 2012-10-09 | 1 | -9/+0 |
| | | | | libopkbuild.1 is the library now. | ||||
* | Remove old genopkg.sh | P. J. McDermott | 2012-10-09 | 1 | -2/+1 |
| | |||||
* | Use libopkbuild_1 macro in Makefile.in. | P. J. McDermott | 2012-10-09 | 1 | -1/+3 |
| | |||||
* | Get rid of old INSTALL macros. | P. J. McDermott | 2012-08-02 | 1 | -2/+0 |
| | |||||
* | Pass macros like DESTDIR without using a file. | P. J. McDermott | 2012-08-02 | 1 | -24/+26 |
| | |||||
* | Write locale input makefile. | P. J. McDermott | 2012-08-02 | 1 | -4/+13 |
| | |||||
* | Start rewriting build system. | P. J. McDermott | 2012-08-02 | 1 | -42/+25 |
| | |||||
* | Replace "/bin/sh" with "@@SHELL@@" in scripts. | P. J. McDermott | 2012-04-24 | 1 | -0/+1 |
| | |||||
* | Add '@@PACKAGE@@' and '@@VERSION@@' build macros. | P. J. McDermott | 2012-03-21 | 1 | -1/+3 |
| | |||||
* | Add DATADIR to build system. | P. J. McDermott | 2012-02-20 | 1 | -0/+2 |
| | |||||
* | Add 'ChangeLog' to distributed files.opkhelper-0.1.0 | P. J. McDermott | 2012-02-13 | 1 | -1/+2 |
| | |||||
* | Write a 'README' file. | P. J. McDermott | 2012-02-13 | 1 | -1/+1 |
| | |||||
* | Remove duplicate definition of macro 'MAKE'. | P. J. McDermott | 2012-02-13 | 1 | -1/+0 |
| | |||||
* | Fix 'dist-bzip2' target in input makefile. | P. J. McDermott | 2012-02-13 | 1 | -1/+1 |
| | |||||
* | Add distribution targets to build system. | P. J. McDermott | 2012-02-13 | 1 | -0/+23 |
| | |||||
* | Fix build system destination directory handling. | P. J. McDermott | 2012-01-31 | 1 | -1/+1 |
| | |||||
* | Eliminate leading line break in 'install.config'. | P. J. McDermott | 2012-01-25 | 1 | -2/+1 |
| |