diff options
author | doko <[email protected]> | 2010-10-20 16:07:09 +0200 |
---|---|---|
committer | doko <[email protected]> | 2010-10-20 16:07:09 +0200 |
commit | d126f775be1fae93682924fae7ce39034255a063 (patch) | |
tree | fa0c772f5647f976ad5847d3fed81b548f59080e | |
parent | afb34f78256f69f516fc78d0ffd90eb2dedc572a (diff) |
Fix -sourcepath for builddir != srcdir
2010-10-20 Matthias Klose <[email protected]>
* Makefile.am (stamps/extra-class-files.stamp): Fix -sourcepath.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2010-10-20 Matthias Klose <[email protected]> + + * Makefile.am (stamps/extra-class-files.stamp): Fix -sourcepath. + 2010-10-20 Omair Majid <[email protected]> * netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java diff --git a/Makefile.am b/Makefile.am index 20a866a..6fb3c43 100644 --- a/Makefile.am +++ b/Makefile.am @@ -287,7 +287,7 @@ extra-source-files.txt: stamps/extra-class-files.stamp: extra-source-files.txt stamps/netx.stamp mkdir -p extra-lib $(BOOT_DIR)/bin/javac $(IT_JAVACFLAGS) -d extra-lib \ - -sourcepath extra -cp netx.build \ + -sourcepath $(abs_top_srcdir)/extra -cp netx.build \ -bootclasspath $(RUNTIME) @extra-source-files.txt cp -r $(NETX_EXTRA_DIR) extra-lib/net/sourceforge/jnlp/about mkdir -p stamps |