nixpkgs/pkgs/tools/networking/dhcp/builder.sh
Eelco Dolstra 7f1a438ca8 * Latest dhcp.
* Dhcp client script: create resolv.conf even if the DHCP server
  doesn't provide a domain name, only a list of name servers.  (The
  QEMU DHCP server does this.)

svn path=/nixpkgs/trunk/; revision=7920
2007-02-20 14:20:16 +00:00

17 lines
244 B
Bash

source $stdenv/setup
export DESTDIR=$out
configurePhase=configurePhase
configurePhase() {
./configure
prefix=$out
}
preBuild=preBuild
preBuild() {
substituteInPlace client/scripts/linux --replace /bin/bash $shell
}
genericBuild