On Tue, Aug 15, 2000 at 04:40:36PM -0300, Garst R. Reese wrote:
> When I do a make distclean it tries twice on frontends/xforms and stops
> (naturally) on "no rule ..."
> Might this help?
> Garst

Try this patch instead. This fixes both problems. Please apply.

-- 
Kayvan A. Sylvan                   | Proud husband of      | Father to my kids:
Sylvan Associates, Inc.            | Laura Isabella Sylvan | Katherine Yelena
http://www.successlinks.com/kayvan | Reach your goals now! | Robin Gregory
Index: ChangeLog
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/ChangeLog,v
retrieving revision 1.489
diff -u -u -r1.489 ChangeLog
--- ChangeLog   2000/08/15 09:40:02     1.489
+++ ChangeLog   2000/08/15 20:21:39
@@ -1,3 +1,9 @@
+2000-08-15  Kayvan A. Sylvan <[EMAIL PROTECTED]>
+
+       * src/frontend/Makefile.am: Add gnome and kde to dist tar file.
+       Fix the ``make distclean'' problem (xforms was listed twice,
+       due to the generalizing the frontend).
+
 2000-08-15  Lars Gullik Bjønnes  <[EMAIL PROTECTED]>
 
        * src/WorkArea.C (work_area_handler): more work to get te
Index: src/frontends/Makefile.am
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/frontends/Makefile.am,v
retrieving revision 1.7
diff -u -u -r1.7 Makefile.am
--- src/frontends/Makefile.am   2000/08/14 15:17:54     1.7
+++ src/frontends/Makefile.am   2000/08/15 20:21:40
@@ -4,7 +4,7 @@
 # xforms has to be fixed here as we still need object files in this directory
 # for the compilation of other frontends, so until that we have to let this
 # here.
-SUBDIRS = xforms @FRONTEND@
+SUBDIRS = @FRONTEND@
 ETAGS_ARGS = --lang=c++
 INCLUDES = ${FRONTEND_INCLUDES} -I${srcdir}/.. -I${srcdir}/@FRONTEND@ 
-I${srcdir}/xforms ${SIGC_CFLAGS}
 LIBS =
@@ -21,3 +21,7 @@
        Toolbar.C \
        Toolbar.h
 
+EXTRA_DIST = kde gnome
+
+dist-hook:
+       cd $(distdir) ; rm -rf `find kde -name \*CVS\*`; rm -rf `find gnome -name 
+\*CVS\*` 

Reply via email to