forked from pool/prctl
Petr Gajdos
98476e6e53
OBS-URL: https://build.opensuse.org/package/show/utilities/prctl?expand=0&rev=15
47 lines
1.4 KiB
Diff
47 lines
1.4 KiB
Diff
---
|
|
Makefile.in | 41 +++++++++++++++++++++--------------------
|
|
1 file changed, 21 insertions(+), 20 deletions(-)
|
|
|
|
Index: prctl-1.7/Makefile.in
|
|
===================================================================
|
|
--- prctl-1.7.orig/Makefile.in
|
|
+++ prctl-1.7/Makefile.in
|
|
@@ -76,25 +76,25 @@ all: prctl
|
|
install: installdirs installbin installman
|
|
|
|
installdirs:
|
|
- -if test ! -d $(prefix)/share; then \
|
|
- mkdir -p $(prefix)/share; fi
|
|
- -if test ! -d $(prefix)/share/man; then \
|
|
- mkdir -p $(prefix)/share/man; fi
|
|
- -for dir in $(alldirs) ; do \
|
|
- if test ! -d $${dir}; then \
|
|
- mkdir -p $${dir}; fi; \
|
|
+ -if test ! -d "$(DESTDIR)/$(mandir)"; then \
|
|
+ mkdir -p "$(DESTDIR)/$(mandir)"; fi
|
|
+ -if test ! -d "$(DESTDIR)/$(datadir)"; then \
|
|
+ mkdir -p "$(DESTDIR)/$(datadir)"; fi
|
|
+ -for dir in $(alldirs); do \
|
|
+ if test ! -d $(DESTDIR)/$${dir}; then \
|
|
+ mkdir -p $(DESTDIR)/$${dir}; fi; \
|
|
done
|
|
|
|
installbin: all
|
|
- $(INSTALL_PROGRAM) prctl $(bindir)/prctl
|
|
+ $(INSTALL_PROGRAM) prctl $(DESTDIR)/$(bindir)/prctl
|
|
|
|
installman: prctl.1
|
|
- rm -f $(mandir)/prctl.$(manext)
|
|
- $(INSTALL_DATA) prctl.1 $(mandir)/prctl.$(manext)
|
|
+ rm -f $(DESTDIR)/$(man1dir)/prctl.$(manext)
|
|
+ $(INSTALL_DATA) prctl.1 $(DESTDIR)/$(man1dir)/prctl.$(manext)
|
|
|
|
uninstall:
|
|
- rm -f $(bindir)/prctl
|
|
- rm -f $(mandir)/prctl.$(manext)
|
|
+ rm -f $(DESTDIR)/$(bindir)/prctl
|
|
+ rm -f $(DESTDIR)/$(man1dir)/prctl.$(manext)
|
|
|
|
Makefile: Makefile.in ./config.status
|
|
./config.status
|