diff options
author | Ted Gould <ted@canonical.com> | 2009-04-22 16:46:57 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-22 16:46:57 -0500 |
commit | 0da80a516580943a8c96394591afb5703cc865d6 (patch) | |
tree | f41ad65392ccdecb0b6b5c5f0212ac326e39a617 /debian | |
parent | 0c39b8ac0437f0268949491dfab7b1543cb984f3 (diff) | |
download | ayatana-indicator-messages-0da80a516580943a8c96394591afb5703cc865d6.tar.gz ayatana-indicator-messages-0da80a516580943a8c96394591afb5703cc865d6.tar.bz2 ayatana-indicator-messages-0da80a516580943a8c96394591afb5703cc865d6.zip |
debian/rules: Adding a rule to remove the .la/.a clutter
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 54b8aba..951fd2c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-messages (0.2.0~bzr116-0ubuntu3) UNRELEASED; urgency=low + + * debian/rules: Adding a rule to remove the .la/.a clutter + + -- Ted Gould <ted@ubuntu.com> Wed, 22 Apr 2009 16:46:27 -0500 + indicator-messages (0.2.0~bzr116-0ubuntu2) jaunty; urgency=low * debian/control: libindicator-dev to ~bzr301 diff --git a/debian/rules b/debian/rules index 1c64b91..e813915 100755 --- a/debian/rules +++ b/debian/rules @@ -6,3 +6,7 @@ include /usr/share/cdbs/1/class/gnome.mk DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper LDFLAGS += -Wl,-z,defs -Wl,--as-needed +binary-install/indicator-messages:: + # remove .a/.la clutter + rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.a + rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.la |