about summary refs log tree commit diff
path: root/pkgs/build-support/setup-hooks/make-wrapper.sh
Commit message (Collapse)AuthorAge
* makeWrapper: accept `--argv0` flag (/cc #9562)Thomas Tuegel2015-09-01
| | | | | | | | By default `makeWrapper` will not set argv[0] (this is a reversion to the old default behavior). Based on the breakage we have seen from changing the default, this is what most people want. The `wrapProgram` function will send `--argv0 '"$0"'` to `makeWrapper`, i.e. it will continue to pass-through the argv[0] that the wrapper is called with.
* makeWrapper: child process inherits argv[0]Thomas Tuegel2015-08-23
|
* Revert "python-wrapper: fix wrapped argv[0] w/o sed, maybe"Michael Raskin2014-09-02
| | | | This reverts commit a6dd9bd0cb3ef4896c41f70e37bc3a72d36aa569.
* Revert "Create wrapper directory outside of /bin/ for FHS chroots to be ↵Michael Raskin2014-09-02
| | | | | | closer to FHS" This reverts commit 9deb7f8aae431ed7725cfaa13edf8645d19d91f2.
* Create wrapper directory outside of /bin/ for FHS chroots to be closer to FHSMichael Raskin2014-09-02
|
* python-wrapper: fix wrapped argv[0] w/o sed, maybetv@shackspace.de2014-09-02
|
* * Add a setup hook ‘autoreconfHook’ to simplify packages that need toEelco Dolstra2012-05-19
run autoreconf: buildInputs = [ autoreconfHook ]; is essentially equivalent to buildInputs = [ autoconf automake libtool ]; preConfigure = "autoreconf -i"; svn path=/nixpkgs/branches/x-updates/; revision=34181