From: Bruno Haible Date: Thu, 25 Oct 2001 09:32:59 +0000 (+0000) Subject: Copy only specific files. X-Git-Tag: v0.11~411 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f54f56781cef4e274c304380f50fe3378ad2f638;p=thirdparty%2Fgettext.git Copy only specific files. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 3f4bd8099..bfcb21d3b 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,7 @@ +2001-10-21 Bruno Haible + + * gettextize.in: Copy only ABOUT-NLS, intl/, po/. + 2001-09-25 Bruno Haible Upgrade to automake-1.5. diff --git a/misc/gettextize.in b/misc/gettextize.in index 305943dd0..7aa03cb18 100644 --- a/misc/gettextize.in +++ b/misc/gettextize.in @@ -146,9 +146,7 @@ cd $gettext_dir || { # Now copy all files. Take care for the destination directories. for file in *; do case $file in - intl | po | *.jar) - ;; - *) + ABOUT-NLS) rm -f $srcdir/$file ($try_ln_s && ln -s $gettext_dir/$file $srcdir/$file && $echo "Symlinking file $file") 2>/dev/null || { $echo "Copying file $file"; cp $file $srcdir/$file; }