Yup, that's the problem. Untar the simpleCA package, and edit the
pkgdata/Makefile.in. In the install-pkgDATA rule, add an "|| true"
after the done:
install-pkgDATA: $(pkg_DATA)
@$(NORMAL_INSTALL)
test -z "$(pkgdir)" || $(mkdir_p) "$(DESTDIR)$(pkgdir)"
@list='$(pkg_DATA)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(am__strip_dir) \
echo " $(pkgDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgdir)/$
$f'"; \
$(pkgDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgdir)/$$f"; \
done || true
That's on line 250. I tested it out and that fixed it. The gpt in
4.2 was modified to better support make -j2 builds, which requires
this change to the pkgdata makefiles.
Charles
On Jul 8, 2008, at 11:43 AM, Charles Bacon wrote:
On Jul 8, 2008, at 11:40 AM, Massimo Cafaro wrote:
Grid Packaging Tools (GPT) Version 3.2
The CA package was created on GT4.0
[...]
Perfect. I will try using the binary distribution until we sort
this out.
Well, to be honest, the problem may just be trying to use a SimpleCA
package created by 4.0 with 4.2. I'll check it out, but it does not
sound like there is anything wrong with your install from source.
I'll check out the simpleCA package to see if that's the problem.
Charles