diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-03-24 12:11:04 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-03-24 12:11:04 +0000 |
commit | 1a526b2e0f5039e2aa28166c1a1e3cec6c46e759 (patch) | |
tree | 509b23f4dabccdbde65aa700425b73c549cbb6f6 /tools/Makefile | |
parent | 204983347708192c367c66f0b96fb7684a4134d8 (diff) | |
download | drakx-1a526b2e0f5039e2aa28166c1a1e3cec6c46e759.tar drakx-1a526b2e0f5039e2aa28166c1a1e3cec6c46e759.tar.gz drakx-1a526b2e0f5039e2aa28166c1a1e3cec6c46e759.tar.bz2 drakx-1a526b2e0f5039e2aa28166c1a1e3cec6c46e759.tar.xz drakx-1a526b2e0f5039e2aa28166c1a1e3cec6c46e759.zip |
Install modules required by packdrake and gendistrib in MISC_DEST
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index f302e8706..9c1290a1e 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -19,9 +19,12 @@ $(DIRS): make -C $@ install: - @install -d $(MISC_DEST)/auto + @install -d $(MISC_DEST)/auto $(MISC_DEST)/Distribconf @install mdkinst_stage2_tool $(MISC_DEST) - cp -rf `perldoc -l packdrake` $(MISC_DEST) || { echo "install rpmtools first!" ; exit 1; } + cp -rf `perldoc -l packdrake` $(MISC_DEST) || { echo "install packdrake first!" ; exit 1; } + cp -rf `perldoc -l Packdrakeng` $(MISC_DEST) || { echo "install packdrake first!" ; exit 1; } + cp -rf `perldoc -l Distribconf` $(MISC_DEST) || { echo "install rpmtools first!" ; exit 1; } + cp -rf `perldoc -l Distribconf::Build` $(MISC_DEST)/Distribconf || { echo "install rpmtools first!" ; exit 1; } @cp -rf `perldoc -l URPM | sed s/URPM.pm//`URPM* $(MISC_DEST) || { echo "install perl-URPM first!" ; exit 1; } @cp -rf `perldoc -l URPM | sed s/URPM.pm//`auto/URPM $(MISC_DEST)/auto || { echo "install perl-URPM first!" ; exit 1; } @cd /usr/bin ; install packdrake $(MISC_DEST) || { echo "packdrake is missing"; exit 1; } |