about summary refs log tree commit diff
path: root/testpkgs/args/args.fix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-08-15T13·01+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-08-15T13·01+0000
commit96c7b98bf0f852d7afee9251c4ce9492310e6a87 (patch)
treee2fc32f5ce2371ae7fb5d58f9866afa67de48bf8 /testpkgs/args/args.fix
parent555347744d116b0152a04d4fdb08258276d34199 (diff)
* Argument support in Fix. Arguments can be passed through the
  builder using the `args' binding:

  ("args", ["bla", True, IncludeFix("aterm/aterm.fix")])

  Note that packages can also be declared as inputs by specifying them
  in the argument list.

Diffstat (limited to '')
-rw-r--r--testpkgs/args/args.fix7
1 files changed, 7 insertions, 0 deletions
diff --git a/testpkgs/args/args.fix b/testpkgs/args/args.fix
new file mode 100644
index 0000000000..54a13ddba8
--- /dev/null
+++ b/testpkgs/args/args.fix
@@ -0,0 +1,7 @@
+Package(
+  [ ("name", "args")
+  , ("build", Relative("args/args-build.sh"))
+
+  , ("args", ["1", "2", "3", IncludeFix("slow2/slow.fix")])
+  ]
+)