From 14bd3d8990e80ebcb14219e1b571412f889ce078 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 2 May 2019 12:53:01 -0400 Subject: [PATCH] Fix examples. --- examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Makefile b/examples/Makefile index 8d086dc0bf..09cfa328d1 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 -- 2.47.2