mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
add missing targets that were added to makefile
This commit is contained in:
parent
0067e45d41
commit
993c49a984
@ -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 '../../';
|
||||
|
@ -1 +1 @@
|
||||
username:uid:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:Long name:user home dir:user shell
|
||||
# Samba SMB password file
|
||||
|
Loading…
x
Reference in New Issue
Block a user