gtk+-1.2.7 problem with make-3.79 $(strip)



  gtk+-1.2.7 and make-3.79 don't get along as well as previous versions
did.  It looks like make no longer tolerates empty $(strip) lines:

	...
	make[2]: Leaving directory `/h/src/jk1/gtk+-1.2.7/gdk'
	Making all in gtk
	make[2]: Entering directory `/h/src/jk1/gtk+-1.2.7/gtk'
	Makefile:473: *** Insufficient number of arguments (0) to function `strip'.  Stop.
	make[2]: Leaving directory `/h/src/jk1/gtk+-1.2.7/gtk'
	make[1]: *** [all-recursive] Error 1
	make[1]: Leaving directory `/h/src/jk1/gtk+-1.2.7'
	make: *** [all-recursive-am] Error 2
	MAKE FAILED; RESULT=2 (gtk+-1.2.7)

  Something along the lines of the appended patch might be in order.
--- ./gtk/Makefile.in.OLD	Wed Feb 16 03:29:16 2000
+++ ./gtk/Makefile.in	Mon May  8 12:11:37 2000
@@ -145,7 +145,8 @@
 gtk_public_h_sources = @STRIP_BEGIN@ 	gtk.h				gtkaccelgroup.h			gtkaccellabel.h			gtkadjustment.h			gtkalignment.h			gtkarg.h			gtkarrow.h			gtkaspectframe.h		gtkbin.h			gtkbindings.h			gtkbbox.h			gtkbox.h			gtkbutton.h			gtkcalendar.h			gtkcheckbutton.h		gtkcheckmenuitem.h		gtkclist.h			gtkcolorsel.h			gtkcombo.h			gtkcompat.h			gtkcontainer.h			gtkctree.h			gtkcurve.h			gtkdata.h			gtkdebug.h              	gtkdialog.h			gtkdnd.h			gtkdrawingarea.h		gtkeditable.h           	gtkentry.h			gtkenums.h			gtkeventbox.h			gtkfeatures.h			gtkfilesel.h			gtkfixed.h			gtkfontsel.h			gtkframe.h			gtkgamma.h			gtkgc.h				gtkhandlebox.h			gtkhbbox.h			gtkhbox.h			gtkhpaned.h			gtkhruler.h			gtkhscale.h			gtkhscrollbar.h			gtkhseparator.h			gtkimage.h			gtkinputdialog.h		gtkinvisible.h			gtkitem.h			gtkitemfactory.h		gtklabel.h			gtklayout.h             	gtklist.h			gtklistitem.h			gtkmain.h			gtkmenu.h			gtkmenubar.h			gtkmenufactory.h		gtkmenuitem.h			gtkmenushell.h			gtkmisc.h			gt!
 knotebook.h			gtkobject.h			gtkoptionmenu.h			gtkpacker.h			gtkpaned.h			gtkpixmap.h			gtkplug.h			gtkpreview.h			gtkprivate.h			gtkprogress.h			gtkprogressbar.h		gtkradiobutton.h		gtkradiomenuitem.h		gtkrange.h			gtkrc.h				gtkruler.h			gtkscale.h			gtkscrollbar.h			gtkscrolledwindow.h		gtkselection.h			gtkseparator.h			gtksignal.h			gtksocket.h			gtkspinbutton.h			gtkstyle.h			gtkstatusbar.h			gtktable.h			gtktearoffmenuitem.h    	gtktext.h			gtkthemes.h			gtktipsquery.h			gtktogglebutton.h		gtktoolbar.h			gtktooltips.h			gtktree.h			gtktreeitem.h			gtktypeutils.h			gtkvbbox.h			gtkvbox.h			gtkviewport.h			gtkvpaned.h			gtkvruler.h			gtkvscale.h			gtkvscrollbar.h			gtkvseparator.h			gtkwidget.h			gtkwindow.h		@STRIP_END@
 
 # GTK+ header files that don't get installed
-gtk_private_h_sources = @STRIP_BEGIN@ @STRIP_END@
+#gtk_private_h_sources = @STRIP_BEGIN@ @STRIP_END@
+gtk_private_h_sources = 
 
 # GTK+ C sources to build the library from
 gtk_c_sources = @STRIP_BEGIN@ 	gtkaccelgroup.c			gtkaccellabel.c			gtkadjustment.c			gtkalignment.c			gtkarg.c			gtkarrow.c			gtkaspectframe.c		gtkbin.c			gtkbindings.c			gtkbbox.c			gtkbox.c			gtkbutton.c			gtkcalendar.c			gtkcheckbutton.c		gtkcheckmenuitem.c		gtkclist.c			gtkcolorsel.c			gtkcombo.c			gtkcontainer.c			gtkctree.c			gtkcurve.c			gtkdata.c			gtkdialog.c			gtkdnd.c			gtkdrawingarea.c		gtkeditable.c           	gtkentry.c			gtkeventbox.c			gtkfilesel.c			gtkfixed.c			gtkfontsel.c            	gtkframe.c			gtkgamma.c			gtkgc.c				gtkhandlebox.c			gtkhbbox.c			gtkhbox.c			gtkhpaned.c			gtkhruler.c			gtkhscale.c			gtkhscrollbar.c			gtkhseparator.c			gtkimage.c			gtkinputdialog.c		gtkintl.h			gtkinvisible.c			gtkitem.c			gtkitemfactory.c		gtklabel.c			gtklayout.c			gtklist.c			gtklistitem.c			gtkmain.c			gtkmarshal.c			gtkmenu.c			gtkmenubar.c			gtkmenufactory.c		gtkmenuitem.c			gtkmenushell.c			gtkmisc.c			gtknotebook.c			gtkobject.c			gtkoptionmenu.c			gtkpacker.c	!
 		gtkpaned.c			gtkpixmap.c			gtkplug.c               	gtkpreview.c			gtkprogress.c			gtkprogressbar.c		gtkradiobutton.c		gtkradiomenuitem.c		gtkrange.c			gtkrc.c				gtkruler.c			gtkscale.c			gtkscrollbar.c			gtkscrolledwindow.c		gtkselection.c			gtkseparator.c			gtksignal.c			gtksocket.c             	gtkspinbutton.c			gtkstyle.c			gtkstatusbar.c			gtktable.c			gtktearoffmenuitem.c    	gtktext.c			gtkthemes.c			gtktipsquery.c			gtktogglebutton.c		gtktoolbar.c			gtktooltips.c			gtktree.c			gtktreeitem.c			gtktypeutils.c			gtkvbbox.c			gtkvbox.c			gtkviewport.c			gtkvpaned.c			gtkvruler.c			gtkvscale.c			gtkvscrollbar.c			gtkvseparator.c			gtkwidget.c			gtkwindow.c			fnmatch.c			fnmatch.h		@STRIP_END@


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]