summaryrefslogtreecommitdiffstats
path: root/rules/libnetpbm.make
diff options
context:
space:
mode:
authorLuotao Fu <l.fu@pengutronix.de>2008-03-11 12:38:38 +0000
committerLuotao Fu <l.fu@pengutronix.de>2008-03-11 12:38:38 +0000
commit5514170e712b50185e914f9a31911f4249d2a3d3 (patch)
tree11b73d58860ecaeb9bea88e8ffe26383cc410036 /rules/libnetpbm.make
parentc680708de523e66801fe55e52a530bea00b49f65 (diff)
downloadptxdist-5514170e712b50185e914f9a31911f4249d2a3d3.tar.gz
ptxdist-5514170e712b50185e914f9a31911f4249d2a3d3.tar.xz
* fixed targetinstall stage of some netpbm utils
* added xwd <-> pnm utils (useful for i.E. xprint) git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@7834 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libnetpbm.make')
-rw-r--r--rules/libnetpbm.make15
1 files changed, 11 insertions, 4 deletions
diff --git a/rules/libnetpbm.make b/rules/libnetpbm.make
index 4a7fb15d8..0dec99298 100644
--- a/rules/libnetpbm.make
+++ b/rules/libnetpbm.make
@@ -130,14 +130,21 @@ $(STATEDIR)/libnetpbm.targetinstall: $(libnetpbm_targetinstall_deps_default)
@$(call install_link, libnetpbm, libnetpbm.so.10.31, /usr/lib/libnetpbm.so)
ifdef PTXCONF_LIBNETPBM_PBM2LJ
- @$(call install_copy, libnetpbm, 0, 0, 0644, \
+ @$(call install_copy, libnetpbm, 0, 0, 0755, \
$(LIBNETPBM_DIR)/converter/pbm/pbmtolj, /usr/bin/pbmtolj)
endif
ifdef PTXCONF_LIBNETPBM_PPM2LJ
- @$(call install_copy, libnetpbm, 0, 0, 0644, \
- $(LIBNETPBM_DIR)/converter/pbm/pbmtolj, /usr/bin/pbmtolj)
+ @$(call install_copy, libnetpbm, 0, 0, 0755, \
+ $(LIBNETPBM_DIR)/converter/ppm/ppmtolj, /usr/bin/ppmtolj)
+endif
+ifdef PTXCONF_LIBNETPBM_PNM2XWD
+ @$(call install_copy, libnetpbm, 0, 0, 0755, \
+ $(LIBNETPBM_DIR)/converter/other/pnmtoxwd, /usr/bin/pnmtoxwd)
+endif
+ifdef PTXCONF_LIBNETPBM_XWD2PNM
+ @$(call install_copy, libnetpbm, 0, 0, 0755, \
+ $(LIBNETPBM_DIR)/converter/other/xwdtopnm, /usr/bin/xwdtopnm)
endif
-
@$(call install_finish, libnetpbm)
@$(call touch, $@)