diff options
author | arved <arved@FreeBSD.org> | 2008-08-27 22:21:58 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2008-08-27 22:21:58 +0800 |
commit | 87cd8f9d5cfead4a1fd2084bc9a595ba854a3f20 (patch) | |
tree | ade1bdc37b76c86283b5c35e80010220b6026ee7 /audio | |
parent | 102f5f8fe26ff173bceb486be630c194e0267b12 (diff) | |
download | freebsd-ports-gnome-87cd8f9d5cfead4a1fd2084bc9a595ba854a3f20.tar.gz freebsd-ports-gnome-87cd8f9d5cfead4a1fd2084bc9a595ba854a3f20.tar.zst freebsd-ports-gnome-87cd8f9d5cfead4a1fd2084bc9a595ba854a3f20.zip |
Unbreak compile on 64bit platforms
Diffstat (limited to 'audio')
-rw-r--r-- | audio/pd/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/audio/pd/Makefile b/audio/pd/Makefile index 4b3ea2c2c4d3..89bbd8ddb145 100644 --- a/audio/pd/Makefile +++ b/audio/pd/Makefile @@ -33,10 +33,6 @@ USE_TK_BUILD= yes .include <bsd.port.pre.mk> -.if ${ARCH} != "i386" -BROKEN= Does not compile on !i386 -.endif - pre-patch: ${RM} -f ${WRKSRC}/configure @@ -46,6 +42,8 @@ post-configure: s:^pddocdir = .*:pddocdir = ${PREFIX}/share/doc/pd:g; \ s:x_midi.c ::g; s:s_midi.c ::g;" \ < ${WRKSRC}/makefile.orig > ${WRKSRC}/makefile + ${REINPLACE_CMD} -e "s,-m32,," ${WRKSRC}/../extra/makefile \ + ${WRKSRC}/../extra/expr~/makefile pre-install: ${RM} -f ${PLIST} |