diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-31 11:17:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-31 11:17:32 +0000 |
commit | f65674c09420495b7331e9b4bbb31ab948846ec1 (patch) | |
tree | a25db18300a54b5f6f2f417b4e928a77e0f7320c /perl-install/Makefile.drakxtools | |
parent | 7c1a8317be263c7171da27f07dca2a56480e00e2 (diff) | |
download | drakx-backup-do-not-use-f65674c09420495b7331e9b4bbb31ab948846ec1.tar drakx-backup-do-not-use-f65674c09420495b7331e9b4bbb31ab948846ec1.tar.gz drakx-backup-do-not-use-f65674c09420495b7331e9b4bbb31ab948846ec1.tar.bz2 drakx-backup-do-not-use-f65674c09420495b7331e9b4bbb31ab948846ec1.tar.xz drakx-backup-do-not-use-f65674c09420495b7331e9b4bbb31ab948846ec1.zip |
(install): s/cp -rf/cp -rfL/ (-L = --dereference, aka always follow symbolic links)
Diffstat (limited to 'perl-install/Makefile.drakxtools')
-rw-r--r-- | perl-install/Makefile.drakxtools | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Makefile.drakxtools b/perl-install/Makefile.drakxtools index 1128dedb5..dd3209f60 100644 --- a/perl-install/Makefile.drakxtools +++ b/perl-install/Makefile.drakxtools @@ -19,7 +19,7 @@ all: $(DIRS) $(DIRS): install -d auto rm standalone ; ln -s . standalone - rm -f po/DrakX.pot # force rebuild of po's + rm -f share/po/DrakX.pot # force rebuild of po's $(MAKE) -C $@ install: @@ -41,4 +41,4 @@ install: $(MAKE) -C share/po install DATADIR=$(DATADIR) NAME=$(NAME) - cp -rf auto icons $(LIBDEST) + cp -rfL auto icons $(LIBDEST) |