diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-04-11 02:59:57 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-04-11 02:59:57 +0000 |
commit | 5f010964dae0f6f232de267ad3f27b7c85416017 (patch) | |
tree | 8aa9c940cc363f518e111e82168689fd690ad6ab | |
parent | Upgrade to the latest, version 4.21, with associated tweaks to the (diff) |
Support use on AMD64.
Notes
Notes:
svn path=/head/; revision=132986
-rw-r--r-- | devel/linux_devtools/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/linux_devtools/Makefile b/devel/linux_devtools/Makefile index 0f7acb9f44dd..9b10874b4598 100644 --- a/devel/linux_devtools/Makefile +++ b/devel/linux_devtools/Makefile @@ -39,7 +39,7 @@ RESTRICTED= "binaries under GNU GPL without accompanying source" USE_LINUX?= yes NO_LATEST_LINK= yes -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= i386 amd64 CONFLICTS= linux_devtools-* DIST_SUBDIR= rpm/${ARCH}/${PORTVERSION} PREFIX= ${LINUXBASE} @@ -64,6 +64,11 @@ RPMDIR= ${DISTDIR}/${DIST_SUBDIR} REMOVE_DIRS= dev tmp var/tmp REMOVE_FILES= +.if (${ARCH} == "amd64") +ARCH= i386 +RPMFLAGS+= --ignorearch +.endif + do-patch: @${DO_NADA} |