Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cnijfilter build fails #40

Open
joakim-tjernlund opened this issue Dec 14, 2019 · 0 comments
Open

cnijfilter build fails #40

joakim-tjernlund opened this issue Dec 14, 2019 · 0 comments

Comments

@joakim-tjernlund
Copy link

One cannot put emake args in "":
"emake" "DESTDIR="${D}" install"
needs to be
"emake" DESTDIR="${D}" install

iff --git a/eclass/ecnij.eclass b/eclass/ecnij.eclass
index 4cc6998..d7082b0 100644
--- a/eclass/ecnij.eclass
+++ b/eclass/ecnij.eclass
@@ -1,6 +1,5 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
-# $Header: eclass/ecnij.eclass,v 4.2 2018/08/22 19:33:34 Exp $
 
 # @ECLASS: ecnij.eclass
 # @MAINTAINER:
@@ -270,7 +269,7 @@ ecnij_src_install()
        (( ${#MULTILIB_COMPAT[@]} == 1 )) && abi_lib=
 
        DIRS=("${CNIJFILTER_SRC[@]}")
-       use cups && dir_src_command "emake" "DESTDIR=\"${D}\" install"
+       use cups && dir_src_command "emake" DESTDIR=\"${D}\" install
 
        for (( p=0; p<${#PRINTER_ID[@]}; p++ )); do
                pr=${PRINTER_MODEL[$p]} prid=${PRINTER_ID[$p]}
@@ -278,9 +277,9 @@ ecnij_src_install()
                        lingua=true
                        pushd ${pr} || die
                        DIRS=("${PRINTER_SRC[@]}")
-                       dir_src_command "emake" "DESTDIR=\"${D}\" install"
+                       dir_src_command "emake" DESTDIR=\"${D}\" install
                        popd
-                       
+
                        pushd ${prid}/libs_bin${abi_lib} || die
                        for lib in lib*.so; do
                                [[ -L ${lib} ]] && continue ||
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant