diff options
author | Ted Gould <ted@canonical.com> | 2009-06-19 07:27:52 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-06-19 07:27:52 -0500 |
commit | a6bcca13059c4af44369be403282a88393d20184 (patch) | |
tree | ecdde2402c6a55624a15c319192dd8fbcdd9930a /debian | |
parent | 8300e1671bdd07d48fcfd9b35887a6a93d0b0761 (diff) | |
download | ayatana-indicator-session-a6bcca13059c4af44369be403282a88393d20184.tar.gz ayatana-indicator-session-a6bcca13059c4af44369be403282a88393d20184.tar.bz2 ayatana-indicator-session-a6bcca13059c4af44369be403282a88393d20184.zip |
debian/rules: Removing the .a/.la clutter in the install
directory.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 35f4cd2..1676a10 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ indicator-sus (0.1~ppa2~indicator3) UNRELEASED; urgency=low * Updating from branch, lazy loading the services. + * debian/rules: Removing the .a/.la clutter in the install + directory. -- Ted Gould <ted@ubuntu.com> Fri, 19 Jun 2009 07:25:25 -0500 diff --git a/debian/rules b/debian/rules index 1c64b91..22338be 100755 --- a/debian/rules +++ b/debian/rules @@ -6,3 +6,8 @@ include /usr/share/cdbs/1/class/gnome.mk DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper LDFLAGS += -Wl,-z,defs -Wl,--as-needed +binary-install/indicator-sus:: + # remove .a/.la clutter + rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.a + rm -f debian/$(cdbs_curpkg)/usr/lib/indicators/*/*.la + |