Changeset deb72bc


Ignore:
Timestamp:
Mar 10, 2006, 3:03:38 AM (18 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
a8a1084
Parents:
46f79ff
Message:

r2512@server (orig r1251): ryan | 2006-03-10 02:09:04 -0800

r1301@rei: lfs | 2006-03-09 19:34:34 +1100
Fix configure issues in tcl and Tk versions 8.4.11 and 8.4.12 when using bash-3.1


Location:
scripts/scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • scripts/scripts/blfs-scripts/blfs-tcl.sh

    r46f79ff rdeb72bc  
    2121   sed '/TCL_LIBRARY/s@\$(prefix)/lib@$(libdir)@g' Makefile.in-ORIG > Makefile.in
    2222fi
     23
     24# Fix brokenness in configure with bash-3.1
     25case ${TCL_VER} in
     26   8.4.1[12] )
     27      if [ ! -f configure-ORIG ]; then cp configure configure-ORIG ; fi
     28      sed "s/relid'/relid/" < configure-ORIG > configure
     29   ;;
     30esac
    2331
    2432max_log_init Tcl ${TCL_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
  • scripts/scripts/native-scripts/temp-tcl.sh

    r46f79ff rdeb72bc  
    3737fi
    3838
     39# Fix brokenness in configure with bash-3.1
     40case ${TCL_VER} in
     41   8.4.1[12] )
     42      if [ ! -f configure-ORIG ]; then cp configure configure-ORIG ; fi
     43      sed "s/relid'/relid/" < configure-ORIG > configure
     44   ;;
     45esac
    3946max_log_init Tcl ${TCL_VER} "temp (shared)" ${CONFLOGS} ${LOG}
    4047CC="${CC-gcc} ${ARCH_CFLAGS}" \
  • scripts/scripts/untested/blfs-scripts/blfs-tk.sh

    r46f79ff rdeb72bc  
    2828fi
    2929
    30 max_log_init Tcl ${TK_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
     30# Fix brokenness in configure with bash-3.1
     31case ${TK_VER} in
     32   8.4.1[12] )
     33      if [ ! -f configure-ORIG ]; then cp configure configure-ORIG ; fi
     34      sed "s/relid'/relid/" < configure-ORIG > configure
     35   ;;
     36esac
     37
     38max_log_init Tk ${TK_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
    3139CC="${CC-gcc} ${ARCH_CFLAGS}" \
    3240CFLAGS="${TGT_CFLAGS}" \
Note: See TracChangeset for help on using the changeset viewer.