chiark / gitweb /
volume_id: update README
[elogind.git] / extras / volume_id / Makefile
index 72e2d3abb10fb930daa0fe015f1aed3f7bf9f1e8..f8d54a23094e1dc376db351cd0bd5e03fa7cfb8e 100644 (file)
@@ -41,10 +41,6 @@ ifeq ($(strip $(VOLUME_ID_STATIC)),true)
 else
        $(Q) $(LD) $(LDFLAGS) -o $@ $@.o $(LIBUDEV) -Llib -lvolume_id $(LIB_OBJS)
 endif
-ifneq ($(strip $(STRIPCMD)),)
-       $(E) "  STRIP   " $@
-       $(Q) $(STRIPCMD) $@
-endif
 
 # man pages
 %.8: %.xml
@@ -59,12 +55,12 @@ clean:
 .PHONY: clean
 
 install-bin: all
-       $(INSTALL_PROGRAM) -D $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
+       $(INSTALL_PROGRAM) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG)
        $(MAKE) -C lib install
 .PHONY: install-bin
 
 uninstall-bin:
-       - rm $(DESTDIR)$(sbindir)/$(PROG)
+       - rm $(DESTDIR)$(libudevdir)/$(PROG)
        $(MAKE) -C lib uninstall
 .PHONY: uninstall-bin