diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-07-31 22:30:32 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-07-31 22:30:32 +0000 |
commit | b8e10478eb51049d7e780dadd2813c2050baeaac (patch) | |
tree | f27e6784fb741821883fd8fa31e1253586cef247 /common.mak | |
parent | 6c9ce82f7464cf2a765854a60ca51e1386a4de80 (diff) | |
download | ffmpeg-b8e10478eb51049d7e780dadd2813c2050baeaac.tar.gz |
Create $(shlibdir), not $(libdir) for shared libs.
Originally committed as revision 5874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index f06d3268a0..6154883150 100644 --- a/common.mak +++ b/common.mak @@ -60,7 +60,7 @@ install: install-libs install-headers install-libs: $(INSTLIBTARGETS) install-lib-shared: $(SLIBNAME) - install -d "$(libdir)" + install -d "$(shlibdir)" ifeq ($(CONFIG_MINGW),yes) install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)" else |