]> git.pld-linux.org Git - packages/dnsmasq.git/commitdiff
- kill bashisms AC-STABLE auto/ac/dnsmasq-2_30-2
authorzbyniu <zbyniu@pld-linux.org>
Mon, 1 May 2006 02:18:09 +0000 (02:18 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dnsmasq-sh.patch -> 1.1

dnsmasq-sh.patch [new file with mode: 0644]

diff --git a/dnsmasq-sh.patch b/dnsmasq-sh.patch
new file mode 100644 (file)
index 0000000..7da0364
--- /dev/null
@@ -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
This page took 0.360972 seconds and 4 git commands to generate.