forked from pool/tecla
initial package for tecla OBS-URL: https://build.opensuse.org/request/show/490854 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tecla?expand=0&rev=1
19 lines
380 B
Diff
19 lines
380 B
Diff
Add DESTDIR support for installation directories.
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -15,10 +15,10 @@
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
-LIBDIR=@libdir@
|
|
-INCDIR=@includedir@
|
|
-MANDIR=@mandir@
|
|
-BINDIR=@bindir@
|
|
+LIBDIR=$(DESTDIR)@libdir@
|
|
+INCDIR=$(DESTDIR)@includedir@
|
|
+MANDIR=$(DESTDIR)@mandir@
|
|
+BINDIR=$(DESTDIR)@bindir@
|
|
|
|
# Which C compiler do you want to use?
|
|
|