SOURCES: dnsmasq-sh.patch (NEW) - kill bashisms

zbyniu zbyniu at pld-linux.org
Mon May 1 04:18:14 CEST 2006


Author: zbyniu                       Date: Mon May  1 02:18:14 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- kill bashisms

---- Files affected:
SOURCES:
   dnsmasq-sh.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/dnsmasq-sh.patch
diff -u /dev/null SOURCES/dnsmasq-sh.patch:1.1
--- /dev/null	Mon May  1 04:18:14 2006
+++ SOURCES/dnsmasq-sh.patch	Mon May  1 04:18:09 2006
@@ -0,0 +1,30 @@
+diff -ur dnsmasq-2.30.org/bld/install-mo dnsmasq-2.30/bld/install-mo
+--- dnsmasq-2.30.org/bld/install-mo	2006-04-23 15:26:22.000000000 +0200
++++ dnsmasq-2.30/bld/install-mo	2006-05-01 03:48:26.213345250 +0200
+@@ -1,9 +1,10 @@
+ #!/bin/sh
+ 
+ for f in *.mo; do
+-  install -d $1/${f/.mo/}/LC_MESSAGES
+-  install -m 644 $f $1/${f/.mo/}/LC_MESSAGES/dnsmasq.mo
+-  echo installing $1/${f/.mo/}/LC_MESSAGES/dnsmasq.mo
++  f=`echo $f | sed 's/.mo//'`
++  install -d $1/$f/LC_MESSAGES
++  install -m 644 $f.mo $1/$f/LC_MESSAGES/dnsmasq.mo
++  echo installing $1/$f/LC_MESSAGES/dnsmasq.mo
+ done
+ 
+ 
+diff -ur dnsmasq-2.30.org/Makefile dnsmasq-2.30/Makefile
+--- dnsmasq-2.30.org/Makefile	2006-04-23 15:26:21.000000000 +0200
++++ dnsmasq-2.30/Makefile	2006-05-01 03:47:23.785443750 +0200
+@@ -26,7 +26,8 @@
+ all-i18n :
+ 	$(MAKE) I18N=-DLOCALEDIR='\"$(LOCALEDIR)\"' -f ../bld/Makefile -C $(SRC) dnsmasq
+ 	cd $(PO); for f in *.po; do \
+-		$(MAKE) -f ../bld/Makefile -C ../$(SRC) $${f/.po/.mo}; \
++		f=`echo $$f | sed 's/.po/.mo/'`; \
++		$(MAKE) -f ../bld/Makefile -C ../$(SRC) $$f; \
+ 	done
+ 
+ install-i18n : all-i18n install-common
================================================================


More information about the pld-cvs-commit mailing list