diff --git a/pkgs/development/libraries/qt-3/builder.sh b/pkgs/development/libraries/qt-3/builder.sh index 5566fb40ba3..cf481bf988c 100644 --- a/pkgs/development/libraries/qt-3/builder.sh +++ b/pkgs/development/libraries/qt-3/builder.sh @@ -41,4 +41,14 @@ configureScript() { } -genericBuild \ No newline at end of file +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