diff options
author | Bastien Nocera <hadess@hadess.net> | 2009-12-11 16:23:27 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2009-12-11 16:49:03 +0000 |
commit | 5075f29e256557c187f181b4311f56e9bf619a5b (patch) | |
tree | 0b6f72632d26c88a6e228a87ec6a45ed4049e1ae | |
parent | 73f665513b0f1d741d04713ebeae817c13bb9d2d (diff) |
Fix distclean trying to clean browser-plugin/ twice
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index f81a37d6..aeaeef29 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,5 @@ -SUBDIRS = lib bindings po data help src docs +NORMAL_SUBDIRS = lib bindings po data help src docs +SUBDIRS = $(NORMAL_SUBDIRS) if ENABLE_BROWSER_PLUGINS SUBDIRS += browser-plugin @@ -23,7 +24,7 @@ CLEANFILES = totem.spec DISTCLEANFILES = intltool-extract intltool-merge intltool-update \ gnome-doc-utils.make -DIST_SUBDIRS = $(SUBDIRS) browser-plugin +DIST_SUBDIRS = $(NORMAL_SUBDIRS) browser-plugin DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper --enable-gtk-doc --with-nautilusdir='$${libdir}/nautilus/extensions-2.0-distcheck' # Build ChangeLog from GIT history |