[kpartx] fix install target
authorHannes Reinecke <hare@suse.de>
Mon, 30 Apr 2007 06:45:54 +0000 (08:45 +0200)
committerChristophe Varoqui <cvaroqui@zezette.localdomain>
Mon, 21 May 2007 21:15:52 +0000 (23:15 +0200)
The install target should refer the executable, otherwise it'll trigger
an entire rebuild.

Signed-off-by: Hannes Reinecke <hare@suse.de>
devmap_name/Makefile
kpartx/Makefile

index 380c85b..d8d8b09 100644 (file)
@@ -28,9 +28,9 @@ klibc: prepare $(OBJS)
        $(CC) -static -o $(EXEC) $(OBJS)
        $(GZIP) $(EXEC).8 > $(EXEC).8.gz
 
-install:
+install: $(EXEC) $(EXEC).8
        install -d $(DESTDIR)$(bindir)
-       install -s -m 755 $(EXEC) $(DESTDIR)$(bindir)/
+       install -m 755 $(EXEC) $(DESTDIR)$(bindir)/
        install -d $(DESTDIR)$(mandir)
        install -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir)
 
index bf6e6c1..a43f881 100644 (file)
@@ -36,7 +36,7 @@ klibc: prepare $(OBJS)
 $(MULTIPATHLIB)-$(BUILD).a:
        make -C $(multipathdir) BUILD=$(BUILD)
 
-install:
+install: $(EXEC) $(EXEC).8
        install -d $(DESTDIR)$(bindir)
        install -s -m 755 $(EXEC) $(DESTDIR)$(bindir)
        install -d $(DESTDIR)$(mandir)