BUILD: fix quoting issue
\"$@\" got malformed and interpreted by the Makefile
This commit is contained in:
		
							parent
							
								
									ce5653d75c
								
							
						
					
					
						commit
						7dea09c371
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -7,8 +7,8 @@ thememan.exe: htm-mono.csproj
 | 
				
			||||||
	$(MDTOOL) $(MDTOOL_OPTS) build $<
 | 
						$(MDTOOL) $(MDTOOL_OPTS) build $<
 | 
				
			||||||
 | 
					
 | 
				
			||||||
thememan:
 | 
					thememan:
 | 
				
			||||||
	@echo "#!/bin/sh" > $@
 | 
						@echo '#!/bin/sh' > $@
 | 
				
			||||||
	@echo "exec mono /usr/bin/thememan.exe \"$@\"" >> $@
 | 
						@echo 'exec mono /usr/bin/thememan.exe "$$@"' >> $@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
clean-local:
 | 
					clean-local:
 | 
				
			||||||
	rm -f thememan.exe thememan.exe.config thememan.exe.mdb thememan Main.resources
 | 
						rm -f thememan.exe thememan.exe.config thememan.exe.mdb thememan Main.resources
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue