diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-06-16 14:56:10 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2009-06-16 14:56:10 +0200 |
commit | 80e9638bc88d8b8a45bb3733ed146b48cd10a6bf (patch) | |
tree | 04038ffbe94469b61befaa4135f0046679a4e132 | |
parent | df8bdf3fb851c1e0b398db65045dd31e99d1fc91 (diff) |
libudev: remove prefix from .so version variables
-rw-r--r-- | libudev/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libudev/Makefile.am b/libudev/Makefile.am index e58786531c..5d0cbf74b1 100644 --- a/libudev/Makefile.am +++ b/libudev/Makefile.am @@ -29,11 +29,11 @@ libudev_la_SOURCES =\ libudev-monitor.c \ libudev-queue.c -LIBUDEV_LT_CURRENT=4 -LIBUDEV_LT_REVISION=0 -LIBUDEV_LT_AGE=4 +LT_CURRENT=4 +LT_REVISION=0 +LT_AGE=4 libudev_la_LDFLAGS = \ - -version-info $(LIBUDEV_LT_CURRENT):$(LIBUDEV_LT_REVISION):$(LIBUDEV_LT_AGE) \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ -export-symbols $(top_srcdir)/libudev/exported_symbols pkgconfigdir = $(prefix)/$(libdir_name)/pkgconfig |