Skip to content
Features
Business
Explore
Marketplace
Pricing
This repository
Sign in
or
Sign up
Watch
285
Star
1,977
Fork
1,033
accord-net
/
framework
Code
Issues
277
Pull requests
6
Wiki
Insights
Pulse
Graphs
Permalink
Browse files
Fixing make install
Loading branch information
...
1 parent
c9353d9
commit
de378a9b11f3d69b22ccbdccaa7be97e4f366511
cesarsouza
committed
Jan 5, 2017
Unified
Split
Showing
2 changed files
with
7 additions
and
2 deletions
.
+5
−0
Makefile.am
+2
−2
configure.ac
Show comments
View
5
Makefile.am
@@ -92,7 +92,12 @@ clean-local:
maintainer-clean-local
:
rm -rf autom4te.cache
+
install-exec-local
:
+ mkdir -p
$(
DESTDIR
)$(
libdir
)
/
$(
PACKAGE
)
+
$(
INSTALL_SCRIPT
)
-t
$(
DESTDIR
)$(
libdir
)
/
$(
PACKAGE
)
/
$(
LIBFILES
)
+
uninstall-local
:
+ rm -rf
$(
DESTDIR
)$(
libdir
)
/
$(
PACKAGE
)
MAINTAINERCLEANFILES
= Makefile.in
\
install-sh
\
Show comments
View
4
configure.ac
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT([accord],
[3.3]
)
+AC_INIT([accord],
m4_esyscmd([tr -d '\n' < Version.txt])
)
AM_INIT_AUTOMAKE([tar-ustar foreign])
AC_PROG_INSTALL
@@ -43,4 +43,4 @@ ${PACKAGE}-${VERSION}
Mono Runtime: ${MONO}
Installation Directory: ${prefix}/lib/${PACKAGE}/
-EOF
+EOF
Toggle all file notes
0 comments on commit
de378a9
Please
sign in
to comment.
You can't perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
0 comments on commit
de378a9