diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-20 13:43:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-20 13:43:39 +0000 |
commit | 405da5160728bd0332ebbc471f52939489720aa7 (patch) | |
tree | 83b40cbdc3af4f4975a3f5f1808a29d0d28d0ceb | |
parent | 6f9977f301789392bece6f37251d54e3ffd6bad0 (diff) | |
download | drakx-405da5160728bd0332ebbc471f52939489720aa7.tar drakx-405da5160728bd0332ebbc471f52939489720aa7.tar.gz drakx-405da5160728bd0332ebbc471f52939489720aa7.tar.bz2 drakx-405da5160728bd0332ebbc471f52939489720aa7.tar.xz drakx-405da5160728bd0332ebbc471f52939489720aa7.zip |
- pcmcia_config.patch now in tools (no more in install which is removed)
- copy xpm's (until step icons work with png's)
- transform group icons in pngs
-rw-r--r-- | perl-install/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index e6bdbafcd..cb60263fa 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -110,6 +110,8 @@ endif done mv -f $(DEST)/lib/libimlib-png.so $(DEST)/usr/lib + for i in $(DEST)/usr/share/icons/*.xpm; do convert $$i `echo $$i | sed 's/xpm/png/'`; rm $$i; done + mv -f $(DEST)/bin/* $(DEST)/sbin/* $(DEST)/usr/bin cd $(DEST)/usr/bin ; mv insmod insmod_ rmdir $(DEST)/bin $(DEST)/sbin @@ -123,7 +125,7 @@ endif cd share ; cp -a modparm.lst $(DEST)/usr/share cd share ; cp -a consolefonts $(DEST)/usr/share cd share ; cp template.in/*.in $(DEST)/usr/share - cd share ; cp *.png $(DEST)/usr/share + cd share ; cp -f *.png *.xpm $(DEST)/usr/share cd share ; cp -a themes $(DEST)/usr/share/gtk cd share ; cp compssUsers compssUsers.desktop rpmsrate $(ROOTDEST)/Mandrake/base @@ -143,7 +145,7 @@ endif ifeq (i386,$(ARCH)) cp -a /etc/pcmcia $(DEST)/etc - patch -p0 -d $(DEST)/etc < ../install/pcmcia_config.patch + patch -p0 -d $(DEST)/etc < ../tools/pcmcia_config.patch endif find $(DEST) -name CVS | xargs rm -rf |