linux-lvm.redhat.com archive mirror
 help / color / mirror / Atom feed
* [linux-lvm] patch for Makefile of LVM 0.8final
@ 2000-04-14 14:32 bert hubert
  2000-04-19 19:40 ` [linux-lvm] " Heinz Mauelshagen
  0 siblings, 1 reply; 4+ messages in thread
From: bert hubert @ 2000-04-14 14:32 UTC (permalink / raw)
  To: mauelsha; +Cc: linux-lvm

Heinz, people,

With this patch I am able to run 'Make install' on both my Debian and RedHat
6.1 boxes without an error when stripping the initrd script. Please apply.


diff -u -r 0.8final.orig/tools/Makefile 0.8final/tools/Makefile
--- 0.8final.orig/tools/Makefile	Tue Feb 22 03:09:32 2000
+++ 0.8final/tools/Makefile	Fri Apr 14 16:22:21 2000
@@ -63,11 +63,18 @@
 l:	list
 
 install-bin:	$(ALL_TARGETS) $(ALL_SCRIPTS)
-	@echo "*** Installing $(ALL_TARGETS) $(ALL_SCRIPTS) in $(BINDIR) ***"
-	@for f in $(ALL_TARGETS) $(ALL_SCRIPTS); \
+	@echo "*** Installing $(ALL_TARGETS) in $(BINDIR) ***"
+	@for f in $(ALL_TARGETS) ; \
 	do \
-  	   rm -f $(BINDIR)/$$f; \
+  	   rm -f "$(BINDIR)/$$f"; \
 	   install -o root -g root -m 555 -s $$f $(BINDIR)/$$f; \
+	done
+
+	@echo "*** Installing $(ALL_SCRIPTS) in $(BINDIR) ***"
+	@for f in $(ALL_SCRIPTS); \
+	do \
+  	   rm -f "$(BINDIR)/$$f"; \
+	   install -o root -g root -m 555 $$f $(BINDIR)/$$f; \
 	done
 

-- 
                       |              http://www.rent-a-nerd.nl
                       |                     - U N I X -
                       |          Inspice et cautus eris - D11T'95

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [linux-lvm] Re: patch for Makefile of LVM 0.8final
  2000-04-14 14:32 [linux-lvm] patch for Makefile of LVM 0.8final bert hubert
@ 2000-04-19 19:40 ` Heinz Mauelshagen
  2000-04-20  6:55   ` bert hubert
  0 siblings, 1 reply; 4+ messages in thread
From: Heinz Mauelshagen @ 2000-04-19 19:40 UTC (permalink / raw)
  To: bert hubert; +Cc: linux-lvm, mge


Applied.

Regards,
Heinz

> Heinz, people,
> 
> With this patch I am able to run 'Make install' on both my Debian and RedHat
> 6.1 boxes without an error when stripping the initrd script. Please apply.
> 
> 
> diff -u -r 0.8final.orig/tools/Makefile 0.8final/tools/Makefile
> --- 0.8final.orig/tools/Makefile	Tue Feb 22 03:09:32 2000
> +++ 0.8final/tools/Makefile	Fri Apr 14 16:22:21 2000
> @@ -63,11 +63,18 @@
>  l:	list
>  
>  install-bin:	$(ALL_TARGETS) $(ALL_SCRIPTS)
> -	@echo "*** Installing $(ALL_TARGETS) $(ALL_SCRIPTS) in $(BINDIR) ***"
> -	@for f in $(ALL_TARGETS) $(ALL_SCRIPTS); \
> +	@echo "*** Installing $(ALL_TARGETS) in $(BINDIR) ***"
> +	@for f in $(ALL_TARGETS) ; \
>  	do \
> -  	   rm -f $(BINDIR)/$$f; \
> +  	   rm -f "$(BINDIR)/$$f"; \
>  	   install -o root -g root -m 555 -s $$f $(BINDIR)/$$f; \
> +	done
> +
> +	@echo "*** Installing $(ALL_SCRIPTS) in $(BINDIR) ***"
> +	@for f in $(ALL_SCRIPTS); \
> +	do \
> +  	   rm -f "$(BINDIR)/$$f"; \
> +	   install -o root -g root -m 555 $$f $(BINDIR)/$$f; \
>  	done
>  
> 
> -- 
>                        |              http://www.rent-a-nerd.nl
>                        |                     - U N I X -
>                        |          Inspice et cautus eris - D11T'95
> 


-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Systemmanagement TS                              T-Nova
                                                 Entwicklungszentrum Darmstadt
Heinz Mauelshagen                                Otto-Roehm-Strasse 71c
Senior Systems Engineer                          Postfach 10 05 41
                                                 64205 Darmstadt
mge@EZ-Darmstadt.Telekom.de                      Germany
                                                 +49 6151 886-425
                                                          FAX-386
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [linux-lvm] Re: patch for Makefile of LVM 0.8final
  2000-04-19 19:40 ` [linux-lvm] " Heinz Mauelshagen
@ 2000-04-20  6:55   ` bert hubert
  2000-04-20  9:10     ` Heinz Mauelshagen
  0 siblings, 1 reply; 4+ messages in thread
From: bert hubert @ 2000-04-20  6:55 UTC (permalink / raw)
  To: Heinz Mauelshagen; +Cc: linux-lvm, mge

On Wed, Apr 19, 2000 at 09:40:33PM +0200, Heinz Mauelshagen wrote:
> 
> Applied.

Heinz, 

Did you receive my 2 patches?


Regards,

bert hubert

-- 
                       |              http://www.rent-a-nerd.nl
                       |                     - U N I X -
                       |          Inspice et cautus eris - D11T'95

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [linux-lvm] Re: patch for Makefile of LVM 0.8final
  2000-04-20  6:55   ` bert hubert
@ 2000-04-20  9:10     ` Heinz Mauelshagen
  0 siblings, 0 replies; 4+ messages in thread
From: Heinz Mauelshagen @ 2000-04-20  9:10 UTC (permalink / raw)
  To: bert hubert; +Cc: mge, linux-lvm

> On Wed, Apr 19, 2000 at 09:40:33PM +0200, Heinz Mauelshagen wrote:
> > 
> > Applied.
> 
> Heinz, 
> 
> Did you receive my 2 patches?

Yes.

I've got and applied the Makefile and the lvchange related patches.

THX,
Heinz

> 
> 
> Regards,
> 
> bert hubert
> 
> -- 
>                        |              http://www.rent-a-nerd.nl
>                        |                     - U N I X -
>                        |          Inspice et cautus eris - D11T'95
> 


-- 

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Systemmanagement TS                              T-Nova
                                                 Entwicklungszentrum Darmstadt
Heinz Mauelshagen                                Otto-Roehm-Strasse 71c
Senior Systems Engineer                          Postfach 10 05 41
                                                 64205 Darmstadt
mge@EZ-Darmstadt.Telekom.de                      Germany
                                                 +49 6151 886-425
                                                          FAX-386
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2000-04-20  9:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-04-14 14:32 [linux-lvm] patch for Makefile of LVM 0.8final bert hubert
2000-04-19 19:40 ` [linux-lvm] " Heinz Mauelshagen
2000-04-20  6:55   ` bert hubert
2000-04-20  9:10     ` Heinz Mauelshagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).