summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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