From: Miroslav Lichvar Date: Mon, 22 Nov 2010 12:38:10 +0000 (+0100) Subject: avoid using install -D X-Git-Tag: r0-52-13~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38d6bc369632cf35b1faec966d766756e99bf4ca;p=thirdparty%2Fnewt.git avoid using install -D --- diff --git a/Makefile.in b/Makefile.in index fb13749..1c82be8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -115,12 +115,13 @@ install: $(LIBNEWT) install-sh whiptail [ -d $(instroot)/$(libdir) ] || install -m 755 -d $(instroot)/$(libdir) [ -d $(instroot)/$(includedir) ] || install -m 755 -d $(instroot)/$(includedir) [ -d $(instroot)/$(man1dir) ] || install -m 755 -d $(instroot)/$(man1dir) + [ -d $(instroot)/$(pkgconfigdir) ] || install -m 755 -d $(instroot)/$(pkgconfigdir) install -m 644 newt.h $(instroot)/$(includedir) install -m 644 $(LIBNEWT) $(instroot)/$(libdir) install -m 755 whiptail $(instroot)/$(bindir) install -m 644 whiptail.1 $(instroot)/$(man1dir) make -C po datadir=$(instroot)/$(datadir) install - install -m 644 -D libnewt.pc $(instroot)/$(pkgconfigdir)/libnewt.pc + install -m 644 libnewt.pc $(instroot)/$(pkgconfigdir) install-sh: sharedlib $(WHIPTCLSO) _snackmodule.so [ -d $(instroot)/$(libdir) ] || install -m 755 -d $(instroot)/$(libdir)