diff options
author | Keith Whitwell <[email protected]> | 2005-01-07 15:24:59 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-01-07 15:24:59 +0000 |
commit | e0be62e2c53991986ac5aa8caab285c55045cb6c (patch) | |
tree | c6231252c7478c3ccf34c60d5bf141fe4abb41bd | |
parent | 85243b8120c1a61c88e57b578ea927c322a5170b (diff) |
Remove -C flags for install which aren't universally supported.
-rw-r--r-- | src/mesa/drivers/dri/Makefile.template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/Makefile.template b/src/mesa/drivers/dri/Makefile.template index 34d845b8e1e..700bf16849b 100644 --- a/src/mesa/drivers/dri/Makefile.template +++ b/src/mesa/drivers/dri/Makefile.template @@ -78,7 +78,7 @@ $(LIBNAME): $(OBJECTS) $(MESA_MODULES) $(WINOBJ) Makefile $(TOP)/src/mesa/drive $(LIB_DIR)/$(LIBNAME): $(LIBNAME) - install -C $(LIBNAME) $(LIB_DIR) + install $(LIBNAME) $(LIB_DIR) @@ -102,6 +102,6 @@ clean: -rm -f depend depend.bak install: $(LIBNAME) - install -C $(LIBNAME) /usr/X11R6/lib/modules/dri/$(LIBNAME) + install $(LIBNAME) /usr/X11R6/lib/modules/dri/$(LIBNAME) include depend |