diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2009-05-01 11:07:56 +0200 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2009-05-01 11:07:56 +0200 |
commit | d6a164ef004191bbf3288d4944b0957f1b812c0d (patch) | |
tree | 287581f3c8f4de244af5f251c27f37b8ddf6850b /recipes | |
parent | 5d467834c566fa7d1da021ee88bd008e4a470d17 (diff) |
gpe-nmf: don't strip during install
- this breaks now with new install
- strip is done in packaging
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch b/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch index 42b5c3628c..b6dc568151 100644 --- a/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch +++ b/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch @@ -8,8 +8,8 @@ diff -urNd ../gpe-nmf-0.17-r0/gpe-nmf-0.17/backend/Makefile gpe-nmf-0.17/backend -install_program: all +install-program: all mkdir -p $(DESTDIR)$(PREFIX)/lib - install -s $(BACKEND) $(DESTDIR)$(PREFIX)/lib/$(BACKEND) - for i in $(CODECS); do install -s $$i $(DESTDIR)$(PREFIX)/lib/gpe-nmf/decoders/$$i; done + install $(BACKEND) $(DESTDIR)$(PREFIX)/lib/$(BACKEND) + for i in $(CODECS); do install $$i $(DESTDIR)$(PREFIX)/lib/gpe-nmf/decoders/$$i; done diff -urNd ../gpe-nmf-0.17-r0/gpe-nmf-0.17/Makefile gpe-nmf-0.17/Makefile --- ../gpe-nmf-0.17-r0/gpe-nmf-0.17/Makefile 2004-08-03 03:31:46.000000000 +0100 +++ gpe-nmf-0.17/Makefile 2004-08-03 12:37:33.000000000 +0100 |