diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-05-12 16:50:50 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-05-12 16:50:50 +0000 |
commit | 6ef3964c793f22dcbbfdac106cd5ead67a26bc2a (patch) | |
tree | aa7b79a9cd2c6a41140af4880dcf42e8ac75530f /contrib/solaris/build-pkg | |
parent | c93e84c2cecf2b968a069de595aff374abe89036 (diff) |
- (bal) Patch to partial sync up contrib/solaris/ packaging software.
Patch by pete <ninjaz@webexpress.com>
Diffstat (limited to 'contrib/solaris/build-pkg')
-rwxr-xr-x | contrib/solaris/build-pkg | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/contrib/solaris/build-pkg b/contrib/solaris/build-pkg index 76529ed48..fe92d9dda 100755 --- a/contrib/solaris/build-pkg +++ b/contrib/solaris/build-pkg | |||
@@ -145,21 +145,28 @@ mkdir -p ${BUILDDIR}/man/man1 | |||
145 | mkdir -p ${BUILDDIR}/man/man8 | 145 | mkdir -p ${BUILDDIR}/man/man8 |
146 | mkdir -p ${BUILDDIR}/etc | 146 | mkdir -p ${BUILDDIR}/etc |
147 | mkdir -p ${BUILDDIR}/bin | 147 | mkdir -p ${BUILDDIR}/bin |
148 | mkdir -p ${BUILDDIR}/libexec | ||
148 | mkdir -p ${BUILDDIR}/sbin | 149 | mkdir -p ${BUILDDIR}/sbin |
149 | 150 | ||
150 | echo "Populating build directories..." | 151 | echo "Populating build directories..." |
151 | cp -p ../../../sshd sbin | 152 | cp -p ../../../sshd sbin |
152 | cp -p ../../../ssh-keygen bin | 153 | cp -p ../../../ssh-keygen bin |
154 | cp -p ../../../ssh-keyscan bin | ||
153 | cp -p ../../../ssh bin | 155 | cp -p ../../../ssh bin |
154 | cp -p ../../../ssh-add bin | 156 | cp -p ../../../ssh-add bin |
155 | cp -p ../../../ssh-agent bin | 157 | cp -p ../../../ssh-agent bin |
156 | cp -p ../../../scp bin | 158 | cp -p ../../../scp bin |
157 | cp -p ../../../scp.1 man/man1/scp.1 | 159 | cp -p ../../../scp.1.out man/man1/scp.1 |
158 | cp -p ../../../ssh-add.1 man/man1/ssh-add.1 | 160 | cp -p ../../../sftp bin |
159 | cp -p ../../../ssh-agent.1 man/man1/ssh-agent.1 | 161 | cp -p ../../../sftp.1.out man/man1/sftp.1 |
160 | cp -p ../../../ssh-keygen.1 man/man1/ssh-keygen.1 | 162 | cp -p ../../../sftp-server libexec/sftp-server |
161 | cp -p ../../../ssh.1 man/man1/ssh.1 | 163 | cp -p ../../../sftp-server.8.out man/man8/sftp-server.8 |
162 | cp -p ../../../sshd.8 man/man8/sshd.8 | 164 | cp -p ../../../ssh-add.1.out man/man1/ssh-add.1 |
165 | cp -p ../../../ssh-agent.1.out man/man1/ssh-agent.1 | ||
166 | cp -p ../../../ssh-keygen.1.out man/man1/ssh-keygen.1 | ||
167 | cp -p ../../../ssh-keyscan.1.out man/man1/ssh-keyscan.1 | ||
168 | cp -p ../../../ssh.1.out man/man1/ssh.1 | ||
169 | cp -p ../../../sshd.8.out man/man8/sshd.8 | ||
163 | cp -p ../../../sshd_config.out etc/sshd_config.default | 170 | cp -p ../../../sshd_config.out etc/sshd_config.default |
164 | cp -p ../../../ssh_config.out etc/ssh_config.default | 171 | cp -p ../../../ssh_config.out etc/ssh_config.default |
165 | cp -p ../../../ssh_prng_cmds etc/ssh_prng_cmds.default | 172 | cp -p ../../../ssh_prng_cmds etc/ssh_prng_cmds.default |
@@ -182,8 +189,11 @@ ${STRIP} bin/ssh | |||
182 | ${STRIP} bin/ssh-add | 189 | ${STRIP} bin/ssh-add |
183 | ${STRIP} bin/ssh-agent | 190 | ${STRIP} bin/ssh-agent |
184 | ${STRIP} bin/ssh-keygen | 191 | ${STRIP} bin/ssh-keygen |
192 | ${STRIP} bin/ssh-keyscan | ||
185 | ${STRIP} sbin/sshd | 193 | ${STRIP} sbin/sshd |
186 | ${STRIP} bin/scp | 194 | ${STRIP} bin/scp |
195 | ${STRIP} bin/sftp | ||
196 | ${STRIP} libexec/sftp-server | ||
187 | 197 | ||
188 | echo "" | 198 | echo "" |
189 | echo "Building Package" | 199 | echo "Building Package" |