44
45
46
47
48
49
50
51
52
53
|
cd generic || exit 1
../configure --enable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}
"${MAKE:-make}" || exit 1
"${MAKE:-make}" install
) || exit 1
exit 0
|
>
>
|
44
45
46
47
48
49
50
51
52
53
54
55
|
cd generic || exit 1
../configure --enable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}
"${MAKE:-make}" || exit 1
"${MAKE:-make}" install
exit 0
) || exit 1
exit 0
|