diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-03 22:50:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-03 22:50:54 +0000 |
commit | a1309f8f6109510efa0faad9603246645891a6e9 (patch) | |
tree | 4f4cd68efecd6e8002326d361ff72d951c8df1e3 /common.mak | |
parent | 5237ce67ebbe19b003148d5f38b107644f31bc48 (diff) | |
download | ffmpeg-a1309f8f6109510efa0faad9603246645891a6e9.tar.gz |
Shared libraries now go in $(shlibdir), not $(libdir).
Originally committed as revision 5927 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mak b/common.mak index 2748e5ed46..0c08a59388 100644 --- a/common.mak +++ b/common.mak @@ -86,9 +86,9 @@ uninstall-libs: ifeq ($(CONFIG_MINGW),yes) -rm -f $(prefix)/$(SLIBNAME) else - -rm -f $(libdir)/$(SLIBNAME_WITH_MAJOR) \ - $(libdir)/$(SLIBNAME) \ - $(libdir)/$(SLIBNAME_WITH_VERSION) + -rm -f $(shlibdir)/$(SLIBNAME_WITH_MAJOR) \ + $(shlibdir)/$(SLIBNAME) \ + $(shlibdir)/$(SLIBNAME_WITH_VERSION) endif -rm -f $(libdir)/$(LIB) |