summaryrefslogtreecommitdiff
path: root/packaging/SGI
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>1997-12-04 19:17:02 +0000
committerHerb Lewis <herb@samba.org>1997-12-04 19:17:02 +0000
commit56f87885bceebe4bd89a67a7b5a65c52f99a1708 (patch)
tree51844de02ef7c36a77b4976ec212d9e2ca373d69 /packaging/SGI
parent75c430cf373d624f62741128fc9f2266370c758f (diff)
downloadsamba-56f87885bceebe4bd89a67a7b5a65c52f99a1708.tar.gz
samba-56f87885bceebe4bd89a67a7b5a65c52f99a1708.tar.bz2
samba-56f87885bceebe4bd89a67a7b5a65c52f99a1708.zip
fix typo in directory name
(This used to be commit 2e73fc0449beabc9658b3fe869e577a868af3c0d)
Diffstat (limited to 'packaging/SGI')
-rwxr-xr-xpackaging/SGI/idb.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl
index 47cf16a5bc..bad7bfb862 100755
--- a/packaging/SGI/idb.pl
+++ b/packaging/SGI/idb.pl
@@ -54,7 +54,7 @@ if (@codepage) {
@codepage[0] =~ s/^.*\)//;
chdir '../../source';
# if we have codepages we need to create them for the package
- system("./installcp.sh . ../packaging/SGI/codepage . @codepage[0]");
+ system("./installcp.sh . ../packaging/SGI/codepages . @codepage[0]");
chdir $curdir;
@codepage = sort split(' ',@codepage[0]);
}
@@ -71,7 +71,7 @@ if (@codepage) {
# strip out all the generated directories and the "*.o" files from the source
# release
-@allfiles = grep(!/^.*\.o$/ & !/^packaging\/SGI\/bins/ & !/^packaging\/SGI\/catman/ & !/^packaging\/SGI\/html/ & !/^packaging\/SGI\/codepage/, @allfiles);
+@allfiles = grep(!/^.*\.o$/ & !/^packaging\/SGI\/bins/ & !/^packaging\/SGI\/catman/ & !/^packaging\/SGI\/html/ & !/^packaging\/SGI\/codepages/, @allfiles);
open(IDB,">samba.idb") || die "Unable to open samba.idb for output\n";
@@ -127,10 +127,10 @@ while (@docs) {
print IDB "f 0755 root sys usr/samba/inetd.sh packaging/SGI/inetd.sh samba.sw.base\n";
print IDB "d 0755 root sys usr/samba/lib packaging/SGI samba.sw.base\n";
if (@codepage) {
- print IDB "d 0755 root sys usr/samba/lib/codepage packaging/SGI samba.sw.base\n";
+ print IDB "d 0755 root sys usr/samba/lib/codepages packaging/SGI samba.sw.base\n";
while (@codepage) {
$nextpage = shift @codepage;
- print IDB "f 0644 root sys usr/samba/lib/codepage/codepage.$nextpage packaging/SGI/codepage/codepage.$nextpage samba.sw.base\n";
+ print IDB "f 0644 root sys usr/samba/lib/codepages/codepage.$nextpage packaging/SGI/codepages/codepage.$nextpage samba.sw.base\n";
}
}
print IDB "f 0644 root sys usr/samba/lib/smb.conf packaging/SGI/smb.conf samba.sw.base config(update)\n";