add comments to bugs.
authorJameson Graef Rollins <jrollins@finestructure.net>
Wed, 3 Dec 2008 20:10:32 +0000 (15:10 -0500)
committerJameson Graef Rollins <jrollins@finestructure.net>
Wed, 3 Dec 2008 20:10:32 +0000 (15:10 -0500)
website/bugs/posix_compliance.mdwn
website/bugs/use_getopts_instead_of_getopt.mdwn

index c2908ad6b60c36b7e7d2890dbcc2518544ca2edc..d418e98c8f438df9de1d698a65035057d8a0b140 100644 (file)
@@ -7,3 +7,6 @@ bashism at the moment, so this may not be trivial.  For instance:
       servo:~/cmrg/monkeysphere/git 0$ checkbashisms -f src/monkeysphere-server 2>&1 | wc -l
       50
       servo:~/cmrg/monkeysphere/git 0$ 
+
+It looks like the biggest complication for this would be the
+occasional use of bash arrays.
index db087b4561a4fb402a6ac339f6cfded805a8a5c6..af4c17a5b322dd54439b51cb42448e3d0eb50058 100644 (file)
@@ -2,3 +2,9 @@ Since Monkeysphere is using bash, it would be nice to use the shell
 build in getopts function, instead of the external getopt program.
 This would reduce an external dependency, which would definitely be
 better for portability.
+
+---
+
+So it looks like the sh built-in getopts does not include long options
+(eg. "--expire").  Is it worth getting rid of the long options for
+this?