diff options
author | tg <tg@FreeBSD.org> | 1998-12-11 21:46:40 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1998-12-11 21:46:40 +0800 |
commit | 536cdec7d04d2d1dd67d685abc4af1fc1e20652f (patch) | |
tree | 0c6a0984a5a16f1da263757976e66e19314a955e /graphics/skencil | |
parent | a08d463eec09349b9fc0b17e820cd1a725144dfb (diff) | |
download | freebsd-ports-gnome-536cdec7d04d2d1dd67d685abc4af1fc1e20652f.tar.gz freebsd-ports-gnome-536cdec7d04d2d1dd67d685abc4af1fc1e20652f.tar.zst freebsd-ports-gnome-536cdec7d04d2d1dd67d685abc4af1fc1e20652f.zip |
Don't drop command line arguments in the wrappers.
Diffstat (limited to 'graphics/skencil')
-rw-r--r-- | graphics/skencil/files/sk2ps.in | 2 | ||||
-rw-r--r-- | graphics/skencil/files/sketch.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/skencil/files/sk2ps.in b/graphics/skencil/files/sk2ps.in index f1e6fce8891d..a2c4142c4a08 100644 --- a/graphics/skencil/files/sk2ps.in +++ b/graphics/skencil/files/sk2ps.in @@ -1,4 +1,4 @@ #!/bin/sh cd @PREFIX@/share/sketch -exec @PREFIX@/bin/python sk2ps.py +exec @PREFIX@/bin/python sk2ps.py $@ diff --git a/graphics/skencil/files/sketch.in b/graphics/skencil/files/sketch.in index 2ce0a4304b80..f0a9637d7032 100644 --- a/graphics/skencil/files/sketch.in +++ b/graphics/skencil/files/sketch.in @@ -1,4 +1,4 @@ #!/bin/sh cd @PREFIX@/share/sketch -exec @PREFIX@/bin/python sketch.py +exec @PREFIX@/bin/python sketch.py $@ |