diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-28 10:33:34 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-28 10:33:34 +0000 |
commit | 278ea4097e4deca33da1a08d746e8d80a620ce95 (patch) | |
tree | 840c57c4501e5adeae44733417a64d4bfbd66775 /test/build | |
parent | f915f773495e9675a6cd514742666c8c12f005e6 (diff) |
* Don't fork in `nix run'.
Diffstat (limited to 'test/build')
-rwxr-xr-x | test/build/pan-run.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/build/pan-run.sh b/test/build/pan-run.sh index c933a3803..1d9db5377 100755 --- a/test/build/pan-run.sh +++ b/test/build/pan-run.sh @@ -4,4 +4,7 @@ export LD_LIBRARY_PATH=$glib/lib:$atk/lib:$pango/lib:$gtk/lib:$gnet/lib:$pspell/ ldd $pan/bin/pan -$pan/bin/pan $*
\ No newline at end of file +prog=$1 +shift + +$pan/bin/$prog $* |