jhbuild r2090 - trunk



Author: rhult
Date: Tue May 13 08:20:50 2008
New Revision: 2090
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2090&view=rev

Log:
2008-05-13  Richard Hult  <richard imendio com>

	* Makefile.plain: Make it possible to build without gettext with
	the plain makefile, bug #532895.


Modified:
   trunk/ChangeLog
   trunk/Makefile.plain

Modified: trunk/Makefile.plain
==============================================================================
--- trunk/Makefile.plain	(original)
+++ trunk/Makefile.plain	Tue May 13 08:20:50 2008
@@ -4,7 +4,6 @@
 CC = gcc
 CFLAGS = -Wall -O2
 
-SUBDIRS = po
 bindir=$(HOME)/bin
 desktopdir=$(HOME)/.local/share/applications
 
@@ -16,10 +15,10 @@
 
 update:
 	svn update --quiet
-	cd po && make
+	@if [ "x$(DISABLE_GETTEXT)" == x ]; then (cd po && make -f Makefile.plain); fi
 
 install: install-check
-	cd po && make -f Makefile.plain install
+	@if [ "x$(DISABLE_GETTEXT)" == x ]; then (cd po && make -f Makefile.plain install); fi
 	@echo "Creating $(bindir)/jhbuild"
 	@mkdir -p $(bindir)
 	@sed "s,@jhbuilddir@,`pwd`,g" < jhbuild.in > $(bindir)/jhbuild



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