From: <kr_...@us...> - 2003-07-17 19:34:40
|
Update of /cvsroot/htoolkit/port In directory sc8-pr-cvs1:/tmp/cvs-serv7457/port Modified Files: configure Log Message: Add -username option to set the name of sourceforge user Index: configure =================================================================== RCS file: /cvsroot/htoolkit/port/configure,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** configure 17 Jul 2003 17:34:25 -0000 1.16 --- configure 17 Jul 2003 19:34:37 -0000 1.17 *************** *** 22,25 **** --- 22,26 ---- target="" ccoption="" + username=$USERNAME # Parse command-line arguments *************** *** 37,40 **** --- 38,42 ---- echo " -package <local package configuration file>" echo " -incdir <ffi include directory, contains 'HsFFI.h'>" + echo " -username <username on sourceforge (= $username)>" echo " -haddock <haddock documentation tool>" echo " -haddock-libs <haddock library directory>" *************** *** 54,57 **** --- 56,61 ---- -package*) hcpkglocal="$2"; shift;; + -username*) + username="$2"; shift;; -haddock-libs*) hdoclibs="$2"; shift;; *************** *** 390,393 **** --- 394,398 ---- echo "EXE=$exe" >> config/config.mk echo "DLL=$dll" >> config/config.mk + echo "USERNAME=$username" >> config/config.mk echo "creating header file configuration" |