From: Ken Raeburn Date: Tue, 15 Mar 1994 02:10:32 +0000 (+0000) Subject: Scan Makefile.in, not version.c, for current version number. Delete all X-Git-Tag: gdb-4_18~15192 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3b0ae93d2686430bc29aa984073efffe5895770;p=platform%2Fupstream%2Fbinutils.git Scan Makefile.in, not version.c, for current version number. Delete all versions of temp files when finished with them. Create config.h. Not yet tested. --- diff --git a/gas/config-gas.com b/gas/config-gas.com index 48e2e49..06bba35 100644 --- a/gas/config-gas.com +++ b/gas/config-gas.com @@ -30,36 +30,28 @@ $! $! $! Create the file version.opt, which helps identify the executalbe. $! -$search version.c version_string,"="/match=and/output=t.tmp +$search Makefile.in "VERSION="/match=and/output=t.tmp $open ifile$ t.tmp $read ifile$ line $close ifile$ -$delete/nolog t.tmp; -$ijk=f$locate("""",line)+1 +$delete/nolog t.tmp;* +$! Discard "VERSION=" and "\n" parts. +$ijk=f$locate("=",line)+1 $line=f$extract(ijk,f$length(line)-ijk,line) -$ijk=f$locate("""",line) -$line=f$extract(0,ijk,line) $ijk=f$locate("\n",line) $line=f$extract(0,ijk,line) $! -$i=0 -$loop: -$elm=f$element(i," ",line) -$if elm.eqs."" then goto no_ident -$if (elm.les."9").and.(elm.ges."0") then goto write_ident -$i=i+1 -$goto loop -$! -$no_ident: -$elm="?.??" -$! -$! -$write_ident: $open ifile$ version.opt/write -$write ifile$ "ident="+""""+elm+"""" +$write ifile$ "ident="+""""+line+"""" +$close ifile$ +$! Now write config.h. +$open ifile$ config.h/write +$write ifile$ "#define TARGET_CPU """,cpu_type,""" +$write ifile$ "#define TARGET_ALIAS ""vms""" +$write ifile$ "#define TARGET_CANONICAL ""vax-dec-vms"""" +$write ifile$ "#define GAS_VERSION """,line,"""" $close ifile$ $! -$ ! $ if f$search("config.status") .nes. "" then delete config.status.* $ open/write file config.status $ write file "Links are now set up for use with a vax running VMS."