diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/fush/files/install.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/fush/files/install.patch')
-rw-r--r-- | recipes/fush/files/install.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/fush/files/install.patch b/recipes/fush/files/install.patch new file mode 100644 index 0000000000..0b054c2ec9 --- /dev/null +++ b/recipes/fush/files/install.patch @@ -0,0 +1,31 @@ +Index: fush-0-9-0/Makefile.in +=================================================================== +--- fush-0-9-0.orig/Makefile.in 2004-01-25 18:52:01.000000000 -0600 ++++ fush-0-9-0/Makefile.in 2005-01-18 15:39:24.000000000 -0600 +@@ -1,6 +1,7 @@ + CC = @CC@ + CFLAGS = -Wall @CFLAGS@ @CPPFLAGS@ @DEFS@ + LDFLAGS = @LDFLAGS@ @LIBS@ ++DESTDIR= + prefix=@prefix@ + exec_prefix=@exec_prefix@ + bindir=@bindir@ +@@ -31,12 +32,12 @@ + cd src && $(MAKE) fuadmin + + install : fush fuadmin +- $(INSTALL) -c -m 0755 src/fush $(bindir)/fush +- $(INSTALL) -c -m 0755 src/fuadmin $(sbindir)/fuadmin +- chown $(user) $(bindir)/fush +- chmod 4755 $(bindir)/fush +- $(INSTALL) -c -m 0755 man/fush.1.gz $(mandir)/man1/fush.1.gz +- $(INSTALL) -c -m 0755 man/fuadmin.1.gz $(mandir)/man1/fuadmin.1.gz ++ $(INSTALL) -c -m 0755 src/fush $(DESTDIR)$(bindir)/fush ++ $(INSTALL) -c -m 0755 src/fuadmin $(DESTDIR)$(sbindir)/fuadmin ++ -chown $(user) $(DESTDIR)$(bindir)/fush ++ -chmod 4755 $(DESTDIR)$(bindir)/fush ++ $(INSTALL) -c -m 0755 man/fush.1.gz $(DESTDIR)$(mandir)/man1/fush.1.gz ++ $(INSTALL) -c -m 0755 man/fuadmin.1.gz $(DESTDIR)$(mandir)/man1/fuadmin.1.gz + + config : + src/fuadmin -c |