diff options
author | Herb Lewis <herb@samba.org> | 1998-10-08 20:43:29 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 1998-10-08 20:43:29 +0000 |
commit | fa03e9984257bad10b50fc12e396b277b9586ac6 (patch) | |
tree | 58b218803fc89920126c189ed4a6ef0472f25599 /packaging/SGI/idb.pl | |
parent | d0ca2da837844e592b55a49e9e3f5d39f2e4f0e4 (diff) | |
download | samba-fa03e9984257bad10b50fc12e396b277b9586ac6.tar.gz |
add missing targets that were added to makefile
(This used to be commit 993c49a984fa2ae219f675543a1d0b6a7fbe043a)
Diffstat (limited to 'packaging/SGI/idb.pl')
-rwxr-xr-x | packaging/SGI/idb.pl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl index f071e1809b9..4fb0d6bb9a2 100755 --- a/packaging/SGI/idb.pl +++ b/packaging/SGI/idb.pl @@ -19,6 +19,8 @@ open(MAKEFILE,"../../source/Makefile") || die "Unable to open Makefile\n"; @makefile = <MAKEFILE>; @sprogs = grep(/^SPROGS /,@makefile); @progs1 = grep(/^PROGS1 /,@makefile); +@progs2 = grep(/^PROGS2 /,@makefile); +@mprogs = grep(/^MPROGS /,@makefile); @progs = grep(/^PROGS /,@makefile); @scripts = grep(/^SCRIPTS /,@makefile); @codepage = grep(/^CODEPAGELIST/,@makefile); @@ -32,10 +34,18 @@ if (@progs) { @progs[0] =~ s/^.*\=//; @progs = split(' ',@progs[0]); } +if (@mprogs) { + @mprogs[0] =~ s/^.*\=//; + @mprogs = split(' ',@mprogs[0]); +} if (@progs1) { @progs1[0] =~ s/^.*\=//; @progs1 = split(' ',@progs1[0]); } +if (@progs2) { + @progs2[0] =~ s/^.*\=//; + @progs2 = split(' ',@progs2[0]); +} if (@scripts) { @scripts[0] =~ s/^.*\=//; @scripts = split(' ',@scripts[0]); @@ -57,7 +67,7 @@ system("cp ../swat/README ../packaging/SGI/swat"); chdir $curdir; # add my local files to the list of binaries to install -@bins = sort byfilename (@sprogs,@progs,@progs1,@scripts,("/findsmb","/sambalp","/smbprint")); +@bins = sort byfilename (@sprogs,@progs,@progs1,@progs2,@mprogs,@scripts,("/findsmb","/sambalp","/smbprint")); # get a complete list of all files in the tree chdir '../../'; |