From 5889fd12bc1433d4500fc7349fe26bbc8a7a7548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwenol=C3=A9=20Beauchesne?= Date: Mon, 5 Aug 2002 13:21:16 +0000 Subject: lib64 fixes --- perl-install/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/perl-install/Makefile b/perl-install/Makefile index d09718f55..7ef588aa4 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -99,9 +99,11 @@ get_needed_files: $(DIRS) $(MOFILES) install -d $(DEST)/etc install -d $(DEST)/etc/sysconfig/network-scripts install -d $(DEST)/lib + install -d $(DEST)/$(LIB) install -d $(DEST)/bin install -d $(DEST)/usr/bin install -d $(DEST)/usr/lib + install -d $(DEST)/usr/$(LIB) install -d $(DEST)/usr/share install -d $(DEST)/usr/share/gtk install -d $(DEST)/usr/share/xmodmap @@ -123,6 +125,8 @@ endif for i in `cat /tmp/list`; do \ if (echo $$i | grep -q "lib/[^/]*\.so"); then \ install -s $$i $(DEST)/lib; \ + elif (echo $$i | grep -q "lib64/[^/]*\.so"); then \ + install -s $$i $(DEST)/lib64; \ else \ d=$$i; \ (echo $$d | grep -q "^[^/]") && d="$(REP4PMS)/$$d"; \ @@ -137,7 +141,7 @@ endif fi; \ fi; \ done - mv -f $(DEST)/lib/libimlib-png.so $(DEST)/usr/lib + mv -f $(DEST)/$(LIB)/libimlib-png.so $(DEST)/usr/$(LIB) # # transform xpm's in png's for i in $(DEST)/usr/share/icons/*.xpm; do convert $$i $${i%xpm}png; rm $$i; done -- cgit v1.2.1