diff options
author | trevor <trevor@FreeBSD.org> | 2002-08-30 12:46:35 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2002-08-30 12:46:35 +0000 |
commit | b6df7d66616556a5033a26facdd84a509ef359ec (patch) | |
tree | 34ee1017e7ad65f9e5d71bd60a766895a5997e93 /emulators | |
parent | 0d0de3fe1c2800f9ae4e612e4d481d35e55e645e (diff) | |
download | FreeBSD-ports-b6df7d66616556a5033a26facdd84a509ef359ec.zip FreeBSD-ports-b6df7d66616556a5033a26facdd84a509ef359ec.tar.gz |
Correct "script failed" installation error introduced in the last commit.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/linux_base-6/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/emulators/linux_base-6/Makefile b/emulators/linux_base-6/Makefile index 9f886e6..f342940 100644 --- a/emulators/linux_base-6/Makefile +++ b/emulators/linux_base-6/Makefile @@ -148,10 +148,13 @@ do-install: @brandelf -t Linux ${LINUXBASE}/sbin/ldconfig @${LINUXBASE}/sbin/ldconfig @${TOUCH} ${LINUXBASE}/etc/ld.so.conf - @for R in ${UPDATES} ${RPM_SET2}; do \ - ${ECHO} $$R; \ - ${RPM} -U ${RPMFLAGS} ${RPMDIR}/$$R; \ - done + @for R in ${RPM_GLIBC} \ + zlib-1.1.3-25.6.${MACHINE_ARCH}.rpm \ + ${RPM_SET2} \ + XFree86-libs-3.3.6-29.${MACHINE_ARCH}.rpm; do \ + ${ECHO} $$R; \ + ${RPM} -U ${RPMFLAGS} ${RPMDIR}/$$R; \ + done @${ECHO} ${RPM_RPM} @${RPM} -U ${RPMFLAGS} --noscripts ${RPMDIR}/${RPM_RPM} @brandelf -t Linux ${LINUXBASE}/bin/rpm |