* Fix dangling symlink bin/qmake.

svn path=/nixpkgs/trunk/; revision=2070
This commit is contained in:
Eelco Dolstra 2005-01-20 11:39:12 +00:00
parent cc896336ef
commit 043ac4d1b0

View File

@ -41,4 +41,14 @@ configureScript() {
}
genericBuild
postInstall=postInstall
postInstall() {
# Qt's `make install' is broken; it copies ./bin/qmake, which
# is a symlink to ./qmake/qmake. So we end up with a dangling
# symlink.
rm $out/bin/qmake
cp -p qmake/qmake $out/bin
}
genericBuild