From: havill Date: Fri, 3 Jan 2003 19:33:38 +0000 (+0000) Subject: don't strip the libs X-Git-Tag: r0-51-3~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07c0b8916855c0ec9725f5af304d8a26cf540363;p=thirdparty%2Fnewt.git don't strip the libs --- diff --git a/Makefile.in b/Makefile.in index 6363fc7..b2eee73 100644 --- a/Makefile.in +++ b/Makefile.in @@ -112,16 +112,16 @@ install: $(LIBNEWT) install-sh whiptail [ -d $(instroot)/$(includedir) ] || install -m 755 -d $(instroot)/$(includedir) install -m 644 newt.h $(instroot)/$(includedir) install -m 644 $(LIBNEWT) $(instroot)/$(libdir) - install -s -m 755 whiptail $(instroot)/$(bindir) + install -m 755 whiptail $(instroot)/$(bindir) install-sh: sharedlib $(WHIPTCLSO) _snackmodule.so [ -d $(instroot)/$(libdir) ] || install -m 755 -d $(instroot)/$(libdir) - install -s -m 755 $(LIBNEWTSH) $(instroot)/$(libdir) + install -m 755 $(LIBNEWTSH) $(instroot)/$(libdir) ln -sf $(LIBNEWTSH) $(instroot)/$(libdir)/libnewt.so - [ -n "$(WHIPTCLSO)" ] && install -s -m 755 whiptcl.so $(instroot)/$(libdir) || : + [ -n "$(WHIPTCLSO)" ] && install -m 755 whiptcl.so $(instroot)/$(libdir) || : for ver in $(PYTHONVERS) ; do \ [ -d $(instroot)/$(libdir)/$$ver/site-packages ] || install -m 755 -d $(instroot)/$(libdir)/$$ver/site-packages ;\ - install -s -m 755 $$ver/_snackmodule.so $(instroot)/$(libdir)/$$ver/site-packages ;\ + install -m 755 $$ver/_snackmodule.so $(instroot)/$(libdir)/$$ver/site-packages ;\ install -m 755 snack.py $(instroot)/$(libdir)/$$ver/site-packages ;\ done