summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2019-05-02 12:53:01 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2019-05-02 12:53:01 -0400
commit14bd3d8990e80ebcb14219e1b571412f889ce078 (patch)
tree81b190431af016b184085429d8dd1e5f53e1bff3 /examples
parentc05a795e786dcb65f2c40b2b3616804138feedfa (diff)
downloadcups-14bd3d8990e80ebcb14219e1b571412f889ce078.tar.gz
Fix examples.
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 8d086dc0b..09cfa328d 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -150,7 +150,7 @@ install: all install-data install-headers install-libs install-exec
install-data:
echo Installing sample PPD compiler files in $(DATADIR)/examples...
$(INSTALL_DIR) $(DATADIR)/examples
- for file in $(EXAMPLES); do \
+ for file in $(DRVFILES); do \
$(INSTALL_DATA) $$file $(DATADIR)/examples; \
done
echo Installing sample ipptool files in $(DATADIR)/ipptool...
@@ -190,7 +190,7 @@ install-libs:
uninstall:
echo Uninstalling sample PPD compiler files from $(DATADIR)/examples...
- for file in $(EXAMPLES); do \
+ for file in $(DRVFILES); do \
$(RM) $(DATADIR)/examples/$$file; \
done
-$(RMDIR) $(DATADIR)/examples