diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-06-16 18:01:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-06-16 18:01:55 +0000 |
commit | 25cd5cb33ce97f9863d842ec8ecebd60a6043d82 (patch) | |
tree | 38a0a22529ac707027cca8013de5518f5dd0002f /subdir.mak | |
parent | ef3efa0dbc4049700f76b2923cdeb26b8f652f70 (diff) | |
download | ffmpeg-25cd5cb33ce97f9863d842ec8ecebd60a6043d82.tar.gz |
Generate pkg-config files in each library subdirectory so that they do
not clutter the root of the source tree.
Originally committed as revision 13780 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'subdir.mak')
-rw-r--r-- | subdir.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subdir.mak b/subdir.mak index 68850c80ba..7c38b77619 100644 --- a/subdir.mak +++ b/subdir.mak @@ -56,7 +56,7 @@ install-headers:: install -d "$(INCINSTDIR)" install -d "$(LIBDIR)/pkgconfig" install -m 644 $(addprefix "$(SRC_DIR)"/,$(HEADERS)) "$(INCINSTDIR)" - install -m 644 $(BUILD_ROOT)/lib$(NAME).pc "$(LIBDIR)/pkgconfig" + install -m 644 $(BUILD_ROOT)/lib$(NAME)/lib$(NAME).pc "$(LIBDIR)/pkgconfig" uninstall-libs:: -rm -f "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR)" \ |