Cdiff install-sfw
*** /export/home/steve/work.muttslang/usr/webrev/src/lib/slang/install-sfw- Tue Jan 22 16:54:02 2008
--- install-sfw Fri Jan 18 05:21:45 2008
*** 1,5 ****
--- 1,6 ----
+ #!/bin/sh
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
*** 18,38 ****
#
# CDDL HEADER END
#
#
- #!/bin/sh
#
! # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
# Use is subject to license terms.
#
# install slang's objects in the proto area, since it would really
# like to install locally, but that doesn't scale.
#
MAJVERS=2
! VERS=2.0.7
SLANGVERS=slang-${VERS}
PREFIX=${ROOT}/opt/sfw
LIBDIR=${PREFIX}/lib
INCDIR=${PREFIX}/include
--- 19,38 ----
#
# CDDL HEADER END
#
#
#
! # Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
# Use is subject to license terms.
#
# install slang's objects in the proto area, since it would really
# like to install locally, but that doesn't scale.
#
MAJVERS=2
! VERS=2.1.3
SLANGVERS=slang-${VERS}
PREFIX=${ROOT}/opt/sfw
LIBDIR=${PREFIX}/lib
INCDIR=${PREFIX}/include
*** 63,82 ****
rm -f ${LIBDIR}/${libso_majver}
ln -s ${libsover} ${LIBDIR}/${libso}
ln -s ${libsover} ${LIBDIR}/${libso_majver}
done
- cd ../..
-
- cd src/objs
-
- for i in slang
- do
- liba=lib${i}.a
- rm -f ${LIBDIR}/${liba}
- cp ${liba} ${LIBDIR}/${liba}
- chmod 444 ${LIBDIR}/${liba}
- done
-
cd ../..
exit 0
--- 63,70 ----