diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-03-30 14:47:02 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-03-30 14:47:02 +0000 |
commit | 52fb07e2b2e4b207fa519f25468a3d2105fca393 (patch) | |
tree | 666a5b30a37b219f45ea5d72b4dc4a0de539d470 /bin | |
parent | 257c085db9df083673e2826c93b7625345aa959d (diff) |
merge from 6.0.1 branch
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mklib | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -290,14 +290,14 @@ case $ARCH in 'HP-UX') if [ $STATIC = 1 ] ; then LIBNAME="lib${LIBNAME}.a" - echo "mklib: Making HPUX static library: " ${LIBNAME} + echo "mklib: Making HP-UX static library: " ${LIBNAME} rm -f ${LIBNAME} ar -ruv ${LIBNAME} ${OBJECTS} FINAL_LIBS=${LIBNAME} else RUNLIB="lib${LIBNAME}.${MAJOR}" DEVLIB="lib${LIBNAME}.sl" - echo "mklib: Making HPUX stared library: " ${RUNLIB} ${DEVLIB} + echo "mklib: Making HP-UX shared library: " ${RUNLIB} ${DEVLIB} ld -b -o ${RUNLIB} +b ${RUNLIB} ${OBJECTS} ${DEPS} ln -s ${RUNLIB} ${DEVLIB} FINAL_LIBS="{RUNLIB} ${DEVLIB}" |