diff options
author | brooks <brooks@FreeBSD.org> | 2006-02-10 07:43:50 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2006-02-10 07:43:50 +0800 |
commit | 37f1de635e29244a55c9e08a59dc564d7bf55b6b (patch) | |
tree | 8fe683cdf84adc37a31c2cc0083ec066e0341dd7 /www/mod_pubcookie/Makefile | |
parent | 29bd08d443375bae5d9d2a9198dc0f1ad75c67f3 (diff) | |
download | freebsd-ports-gnome-37f1de635e29244a55c9e08a59dc564d7bf55b6b.tar.gz freebsd-ports-gnome-37f1de635e29244a55c9e08a59dc564d7bf55b6b.tar.zst freebsd-ports-gnome-37f1de635e29244a55c9e08a59dc564d7bf55b6b.zip |
Actually compile on amd64. This required copying in the config.guess
replacement code from bsd.port.mk because pubcookie lives in a
subdirectory of PREFIX and thus actually defining GNU_CONFIGURE won't
work.
Point hat: brooks
Diffstat (limited to 'www/mod_pubcookie/Makefile')
-rw-r--r-- | www/mod_pubcookie/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/mod_pubcookie/Makefile b/www/mod_pubcookie/Makefile index 6b81b84cd7f9..46de63b79e7d 100644 --- a/www/mod_pubcookie/Makefile +++ b/www/mod_pubcookie/Makefile @@ -47,6 +47,17 @@ CONF_FILES+= ${PC_BASE}/config.sample:${PC_BASE}/config # XXX Add Kerberos +# XXX: more GNU_CONFIGURE hackery +pre-configure: + @CONFIG_GUESS_DIRS=$$(${FIND} ${WRKDIR} -name config.guess -o -name config.sub \ + | ${XARGS} -n 1 ${DIRNAME}); \ + for _D in $${CONFIG_GUESS_DIRS}; do \ + ${CP} -f ${TEMPLATES}/config.guess $${_D}/config.guess; \ + ${CHMOD} a+rx $${_D}/config.guess; \ + ${CP} -f ${TEMPLATES}/config.sub $${_D}/config.sub; \ + ${CHMOD} a+rx $${_D}/config.sub; \ + done + do-install: ${MKDIR} ${PC_DIR}/keys ${INSTALL_PROGRAM} ${WRKSRC}/keyclient ${PC_DIR} |