diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index 130265e..1a0ac1c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +java-common (0.29) unstable; urgency=low + + * Do not build the default-* packages on alpha, arm, hppa. + + -- Matthias Klose <doko@debian.org> Tue, 08 Apr 2008 01:02:28 +0200 + java-common (0.28) unstable; urgency=low [Matthias Klose] diff --git a/debian/rules b/debian/rules index cd9e543..e9c3757 100755 --- a/debian/rules +++ b/debian/rules @@ -25,11 +25,11 @@ provides = java java2 java5 dversion = 1.5-$(jrel) jvmdir = java-gcj -#ifneq (,$(filter $(DEB_HOST_ARCH), alpha hppa)) -# p_jre = -# p_headless = -# p_jdk = -#endif +ifneq (,$(filter $(DEB_HOST_ARCH), alpha arm hppa)) + p_jre = + p_headless = + p_jdk = +endif jre_provides = $(call mk_cslist,$(provides),runtime) jhl_provides = $(call mk_cslist,$(provides),runtime-headless) |