JAR_KNOWS_ATFILE for BSD Project on OS X
Michael Franz
mvfranz at gmail.com
Fri Mar 13 15:36:51 PDT 2009
Hi,
I think part of my problem is the current ecj patch
(patches/ecj/icedtea.patch). The first section has 3 parts to the if, the
second only has 2. The second ifneq (,$(JAR_KNOWS_ATFILE) has cm0f@ that is
what causes my problem. The documenation I found does not say that jar
understand @ as a parameter, but that you can use it to pass commands via a
file using @. Is this really a bad patch or do I not understand how @
works? Removing @ allows the build to continue, but the rt.jar is not
created correctly (I will investigate).
Michael
@@ -651,10 +651,23 @@
$(RES_JAR_ARGLIST): $(RES_JAR_FILELIST)
$(prep-target)
$(SED) -e "s@^@-C $(CLASSBINDIR) @" $< > $@
-$(RESOURCES_JAR): $(RES_JAR_ARGLIST) $(JAR_MANIFEST_FILE)
+$(RESOURCES_JAR): \
+ $(if $(JAR_KNOWS_ATFILE),$(RES_JAR_FILELIST),$(RES_JAR_ARGLIST)) \
+ $(JAR_MANIFEST_FILE)
$(prep-target)
+ifneq (,$(JAR_KNOWS_ATFILE))
+ (cd $(CLASSBINDIR) && \
$(BOOT_JAR_CMD) c0mf $(JAR_MANIFEST_FILE) $@ \
- @$(RES_JAR_ARGLIST) $(BOOT_JAR_JFLAGS)
+ $(JAR_JFLAGS) @$(RES_JAR_FILELIST))
+else ifneq (,$(JAR_ACCEPTS_STDIN_LIST))
+ (cd $(CLASSBINDIR) && $(CAT) $(RES_JAR_FILELIST) | \
+ $(BOOT_JAR_CMD) c0mf@ $(JAR_MANIFEST_FILE) $@ \
+ $(JAR_JFLAGS))
+else
+ (cd $(CLASSBINDIR) && \
+ $(BOOT_JAR_CMD) c0mf $(JAR_MANIFEST_FILE) $@ \
+ $(JAR_JFLAGS) `cat $(RES_JAR_FILELIST)`)
+endif
@$(java-vm-cleanup)
# Create jsse.jar containing SunJSSE implementation classes
@@ -710,10 +723,18 @@
$(RT_JAR_ARGLIST): $(RT_JAR_FILELIST)
$(prep-target)
$(SED) -e "s@^@-C $(CLASSBINDIR) @" $< > $@
-$(RT_JAR): $(RT_JAR_ARGLIST) $(JAR_MANIFEST_FILE)
+$(RT_JAR): $(if $(JAR_KNOWS_ATFILE),$(RT_JAR_FILELIST),$(RT_JAR_ARGLIST)) \
+ $(JAR_MANIFEST_FILE)
$(prep-target)
+ifneq (,$(JAR_KNOWS_ATFILE))
+ (cd $(CLASSBINDIR) && $(CAT) $(RT_JAR_FILELIST) | \
+ $(BOOT_JAR_CMD) c0mf@ $(JAR_MANIFEST_FILE) $@ \
+ $(BOOT_JAR_JFLAGS))
+else
+ (cd $(CLASSBINDIR) && \
$(BOOT_JAR_CMD) c0mf $(JAR_MANIFEST_FILE) $@ \
- @$(RT_JAR_ARGLIST) $(BOOT_JAR_JFLAGS)
+ $(BOOT_JAR_JFLAGS) `$(CAT) $(RT_JAR_FILELIST)`)
+endif
@$(java-vm-cleanup)
# Meta-index construction to make core class loaders lazier
On Sun, Mar 1, 2009 at 7:53 PM, Andrew John Hughes <
gnu_andrew at member.fsf.org> wrote:
> 2009/3/1 Michael Franz <mvfranz at gmail.com>:
> > Hi,
> >
> > I am having problems getting this to work when not building using an
> OpenJDK
> > (Apples JDK 5). I have also not been able to find any documentation on
> > this. Does anyone have a link for this? This is the only part of the
> build
> > I have not been able to get to work cleanly when building Zero on the
> > BSD-Port repo using OS X.
> >
> > One other issue I is getting /opt/local/include and /opt/local/lib into
> the
> > build. I have defined CFLAGS/CXXFLAGS/CPPFLAGS/INCLUDES/LIBS (different
> > combinations) and they all fix parts of the build but break others. What
> is
> > the proper way to add and include and link directory?
> >
> > Michael
> >
>
> It was added by Matthias I believe, and is related to the configure
> check as to whether jar supports @file arguments or not.
> --
> Andrew :-)
>
> Free Java Software Engineer
> Red Hat, Inc. (http://www.redhat.com)
>
> Support Free Java!
> Contribute to GNU Classpath and the OpenJDK
> http://www.gnu.org/software/classpath
> http://openjdk.java.net
>
> PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
> Fingerprint: F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20090313/c9ad5b5f/attachment.html
More information about the distro-pkg-dev
mailing list