From: <kr_...@us...> - 2003-07-17 19:34:40
|
Update of /cvsroot/htoolkit/gio In directory sc8-pr-cvs1:/tmp/cvs-serv7457/gio Modified Files: configure Log Message: Add -username option to set the name of sourceforge user Index: configure =================================================================== RCS file: /cvsroot/htoolkit/gio/configure,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** configure 17 Jul 2003 17:34:25 -0000 1.5 --- configure 17 Jul 2003 19:34:37 -0000 1.6 *************** *** 21,24 **** --- 21,25 ---- portdir="" libdir="" + username=$USERNAME # Parse command-line arguments *************** *** 32,36 **** echo " -hcpkg <package compiler (= ghc-pkg)>" echo " -package <local package configuration file>" ! echo " -port <sources directory of the 'port' library>" echo " -haddock <haddock documentation tool>" echo " -haddock-libs <haddock library directory>" --- 33,38 ---- echo " -hcpkg <package compiler (= ghc-pkg)>" echo " -package <local package configuration file>" ! echo " -port <sources directory of the 'port' library>" ! echo " -username <username on sourceforge (= $username)>" echo " -haddock <haddock documentation tool>" echo " -haddock-libs <haddock library directory>" *************** *** 46,49 **** --- 48,53 ---- -package*) hcpkglocal="$2"; shift;; + -username*) + username="$2"; shift;; -haddock-libs*) hdoclibs="$2"; shift;; *************** *** 241,244 **** --- 245,249 ---- echo "MKDIR=mkdir -p" >> config/config.mk echo "RMDIR=rmdir" >> config/config.mk + echo "USERNAME=$username" >> config/config.mk echo "creating package description" |