diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-10-16 15:44:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-10-16 15:44:31 +0000 |
commit | 9d5aea7cbd2d04303d88ee885c5150b78f5b2f8b (patch) | |
tree | 2ad4ff58e0fccd627e7722179df3117fa38ce161 /move/Makefile | |
parent | 9ddd5ab972e1c3100fef248e4633c6854998ed64 (diff) | |
download | drakx-9d5aea7cbd2d04303d88ee885c5150b78f5b2f8b.tar drakx-9d5aea7cbd2d04303d88ee885c5150b78f5b2f8b.tar.gz drakx-9d5aea7cbd2d04303d88ee885c5150b78f5b2f8b.tar.bz2 drakx-9d5aea7cbd2d04303d88ee885c5150b78f5b2f8b.tar.xz drakx-9d5aea7cbd2d04303d88ee885c5150b78f5b2f8b.zip |
don't use find, it's faster
Diffstat (limited to 'move/Makefile')
-rw-r--r-- | move/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/move/Makefile b/move/Makefile index d006b4561..a74d11f3d 100644 --- a/move/Makefile +++ b/move/Makefile @@ -43,7 +43,7 @@ install: build sudo cp -f $(addprefix $(INSTALL)/, $(shell cd $(DEST_LIVETREE)/usr/lib/libDrakX ; ls *.pm)) $(DEST_LIVETREE)/usr/lib/libDrakX || : #- overwrite stuff.so of drakxtools because it doesn't contain C_DRAKX stuff - sudo cp -f ../perl-install/c/blib/arch/auto/stuff/stuff.so `find $(DEST_LIVETREE)/usr/lib* | grep stuff/stuff.so` + sudo cp -f ../perl-install/c/blib/arch/auto/stuff/stuff.so $(DEST_LIVETREE)/usr/lib/libDrakX/auto/c/stuff #- duplicated :( sudo perl -pi -e 's/#[-+].*//; $$_ = "\n" if (/^=(head|begin)/ .. /^=cut/) || /use (diagnostics|vars|strict)/' $(DEST_STAGE2)/*.pm $(DEST_LIVETREE)/usr/lib/libDrakX/*.pm |