From: Manuel Munz Date: Sat, 11 Dec 2010 17:14:13 +0000 (+0000) Subject: build/: Replace -or with -o #133 X-Git-Tag: 0.10.0~286 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=80b5a4b6f88b8ecbcb27bfd062b37e249e78ced9 build/: Replace -or with -o #133 --- diff --git a/build/i18n-scan.pl b/build/i18n-scan.pl index 3b61bc384..9edb529ef 100755 --- a/build/i18n-scan.pl +++ b/build/i18n-scan.pl @@ -32,7 +32,7 @@ sub dec_tpl_str } -if( open F, "find @ARGV -type f '(' -name '*.htm' -or -name '*.lua' ')' |" ) +if( open F, "find @ARGV -type f '(' -name '*.htm' -o -name '*.lua' ')' |" ) { while( defined( my $file = readline F ) ) { diff --git a/build/module.mk b/build/module.mk index 8d64d6bb4..4e6c42c70 100644 --- a/build/module.mk +++ b/build/module.mk @@ -23,7 +23,7 @@ luasource: cp -pR luasrc/* dist$(LUCI_MODULEDIR) 2>/dev/null || true cp -pR lua/* dist$(LUA_MODULEDIR) 2>/dev/null || true cp -pR htdocs/* dist$(HTDOCS) 2>/dev/null || true - for i in $$(find dist -name .svn -or -name .gitignore); do rm -rf $$i || true; done + for i in $$(find dist -name .svn -o -name .gitignore); do rm -rf $$i || true; done ifneq ($(PO),) mkdir -p dist$(LUCI_I18NDIR) for file in $(PO); do \