diff options
author | Stefan Siegel <siegel@linux-mandrake.com> | 2002-02-17 21:57:27 +0000 |
---|---|---|
committer | Stefan Siegel <siegel@linux-mandrake.com> | 2002-02-17 21:57:27 +0000 |
commit | 5eb8944f5d405ebd580700b834975e21ce290d70 (patch) | |
tree | e801529361a7b1f205b95064588494d16274e64b /perl-install | |
parent | 6802cd4dd3295379a1821a892078e97885e7f221 (diff) | |
download | drakx-backup-do-not-use-5eb8944f5d405ebd580700b834975e21ce290d70.tar drakx-backup-do-not-use-5eb8944f5d405ebd580700b834975e21ce290d70.tar.gz drakx-backup-do-not-use-5eb8944f5d405ebd580700b834975e21ce290d70.tar.bz2 drakx-backup-do-not-use-5eb8944f5d405ebd580700b834975e21ce290d70.tar.xz drakx-backup-do-not-use-5eb8944f5d405ebd580700b834975e21ce290d70.zip |
allow me to work with a symlink to doc in this directory
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/share/po/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile index 97bc531d7..6fe34cbe3 100644 --- a/perl-install/share/po/Makefile +++ b/perl-install/share/po/Makefile @@ -16,8 +16,14 @@ LOCALEDIR=$(DATADIR)/locale all: help $(MOFILES) help: - cvs co doc/manual/{entities,literal/drakx} - rm -rf doc/CVS + @if [ ! -d doc ]; then \ + echo "Checking out doc stuff now ..."; \ + cvs co doc/manual/{entities,literal/drakx}; \ + rm -rf doc/CVS; \ + else \ + echo "Updating doc stuff now ..."; \ + cvs update doc/manual/{entities,literal/drakx}; \ + fi ./help_xml2pm.pl %.mo: %.po |