From d534488f2d0b6ca9e90591e74af555fe242dfe39 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Fri, 27 Jun 2008 15:01:02 +1000 Subject: Remove symlinks to libtool files This prevents dangling symlinks to removed libtool files when the !libtool option is used. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 175edb8f..da11d00d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -765,7 +765,7 @@ tidy_install() { if [ "$(check_option libtool)" = "n" ]; then msg2 "$(gettext "Removing libtool .la files...")" - find . -type f -name "*.la" -exec rm -f -- '{}' \; + find . ! -type d -name "*.la" -exec rm -f -- '{}' \; fi if [ "$(check_option emptydirs)" = "n" ]; then -- cgit v1.2.3-54-g00ecf From d92b0e674d60e53a43fe9f6d5bc5f311364285c6 Mon Sep 17 00:00:00 2001 From: Nagy Gabor Date: Fri, 4 Jul 2008 19:34:55 +0200 Subject: Fix a bogus message in Hungarian translation Signed-off-by: Nagy Gabor Signed-off-by: Dan McGee --- lib/libalpm/po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libalpm/po/hu.po b/lib/libalpm/po/hu.po index c9fd870a..90391466 100644 --- a/lib/libalpm/po/hu.po +++ b/lib/libalpm/po/hu.po @@ -139,7 +139,7 @@ msgstr "a(z) %s csomag saját %s függősége előtt lesz telepítve\n" #, c-format msgid "cannot resolve \"%s\", a dependency of \"%s\"\n" -msgstr "nem sikerült a(z) \"%s\" csomag \"%s\" függőségét feloldani\n" +msgstr "nem sikerült a(z) \"%2$s\" csomag \"%1$s\" függőségét feloldani\n" #, c-format msgid "out of memory!" -- cgit v1.2.3-54-g00ecf