other/5618: make failure in library compilation on AIX 4.3.3

ebates@ebix.com ebates@ebix.com
Wed Feb 6 15:05:00 GMT 2002


>Number:         5618
>Category:       other
>Synopsis:       make failure in library compilation on AIX 4.3.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed Feb 06 14:36:00 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     ebates@ebix.com
>Release:        3.0.3
>Organization:
>Environment:
powerpc-ibm-aix4.3.3.0
>Description:
make unable to find install-sh with relative paths.
>How-To-Repeat:
make bootstrap
>Fix:
Fixed the symptomps by patching the Makefiles with the following commands:

cd powerpc-ibm-aix4.3.3.0
for MKFILE in `find . -name 'Makefile'`; do
  if grep -q -e " \..*/install-sh" ${MKFILE} 2>/dev/null; then
    echo "${MKFILE} ... \c"
    if [[ -s ${MKFILE}-orig ]]; then
      echo "not replaced: ${MKFILE}-orig exists"
    else
      sed "s, \..*/install-sh, /usr/gnu/gcc-3.0.3/install-sh," ${MKFILE} > ${MKFILE}-new
      mv ${MKFILE} ${MKFILE}-orig
      mv ${MKFILE}-new ${MKFILE}
      echo "updated"
    fi
  fi
done

I know that's not the way to really fix it, but that's all I had time for.
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the Gcc-bugs mailing list