diff options
author | gallatin <gallatin@FreeBSD.org> | 2000-11-23 02:52:16 +0800 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2000-11-23 02:52:16 +0800 |
commit | d450597945ac28c7c14513552ba62a7ee06f0925 (patch) | |
tree | 75d697c6119b2e661170b2975ae0b398a478e471 /x11-toolkits/linux-f8-gtk | |
parent | 6bc713c65986e624ab49fb06234e20a3a165102f (diff) | |
download | freebsd-ports-gnome-d450597945ac28c7c14513552ba62a7ee06f0925.tar.gz freebsd-ports-gnome-d450597945ac28c7c14513552ba62a7ee06f0925.tar.zst freebsd-ports-gnome-d450597945ac28c7c14513552ba62a7ee06f0925.zip |
The linux libc on alpha is /lib/libc.so.6.1 not /lib/libc.so.6
Diffstat (limited to 'x11-toolkits/linux-f8-gtk')
-rw-r--r-- | x11-toolkits/linux-f8-gtk/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11-toolkits/linux-f8-gtk/Makefile b/x11-toolkits/linux-f8-gtk/Makefile index 9611edad0aad..c2fefd0942d1 100644 --- a/x11-toolkits/linux-f8-gtk/Makefile +++ b/x11-toolkits/linux-f8-gtk/Makefile @@ -18,7 +18,11 @@ DISTFILES= ${RPM_SET} MAINTAINER= ports@FreeBSD.org BUILD_DEPENDS= rpm:${PORTSDIR}/misc/rpm +.if (${MACHINE_ARCH} == "i386") RUN_DEPENDS= /compat/linux/lib/libc.so.6:${PORTSDIR}/emulators/linux_base +.elif (${MACHINE_ARCH} == "alpha") +RUN_DEPENDS= /compat/linux/lib/libc.so.6.1:${PORTSDIR}/emulators/linux_base +.endif ONLY_FOR_ARCHS= i386 alpha DIST_SUBDIR= rpm |