diff options
author | arved <arved@FreeBSD.org> | 2004-03-19 19:58:31 +0000 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2004-03-19 19:58:31 +0000 |
commit | 16fc5f23d1fcff79019450b03938d2aa693ba7bd (patch) | |
tree | 35205a232755358e987801bb646c6a73e48cadc0 /x11-toolkits/xenostep | |
parent | 713a57a54e485d7444d71bed3c733d23296dc4a1 (diff) | |
download | FreeBSD-ports-16fc5f23d1fcff79019450b03938d2aa693ba7bd.zip FreeBSD-ports-16fc5f23d1fcff79019450b03938d2aa693ba7bd.tar.gz |
Fix Build on AMD64
Diffstat (limited to 'x11-toolkits/xenostep')
-rw-r--r-- | x11-toolkits/xenostep/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/x11-toolkits/xenostep/Makefile b/x11-toolkits/xenostep/Makefile index 36bc06d..e422857 100644 --- a/x11-toolkits/xenostep/Makefile +++ b/x11-toolkits/xenostep/Makefile @@ -26,6 +26,10 @@ MAKE_ENV= MKDIR="${MKDIR}" DIRS= "XenoStep Classic" "XenoStep Classic Small" "XenoStep HeliX" \ "XenoStep HeliX Small" "XenoStep Modern" "XenoStep Modern Small" +.if ${MACHINE_ARCH:L} == "amd64" +CFLAGS+= -fPIC +.endif + post-extract: for dir in ${DIRS}; do \ destdir=`${ECHO_CMD} $${dir} | ${SED} 's| |_|g'`; \ |